起步
安装
创建第一个JavaScript图表
图表要点
Series [处理数据]
响应式
动画
注释
数据标签
事件
交互性
格式化
格式化轴标签
日期时间
本地化
工具提示
网格
图例
图表类型
折线图(Line Chart)
面积图(Area Chart)
条形图(Bar Chart)
柱形图(Column Chart)
箱形图(BoxPlot)
烛台图(Candlestick)
范围条形图(Range Bar Chart)
热图图表(Heat Map Chart)
矩形树图(Treemap Chart)
多轴图表(Multi-Axis Chart)
饼图 / 圆环图(Pie / Donut)
雷达图(Radar)
径向条形图 / 仪表图(RadialBar / Circular Gauge)
同步图表(Synchronized charts)
设计
颜色
主题
渐变
图像填充
模式
滤镜
集成
Angular Charts
React Charts
Vue Charts
如何
放大类别 X 轴
自动换行和多行文本
从 JSON API 更新图表 & AJAX
选项(参考)
annotations
chart
animations
background
brush
defaultLocale
dropShadow
fontFamily
foreColor
group
events
height
id
locales
offsetX
offsetY
parentHeightOffset
redrawOnParentResize
redrawOnWindowResize
selection
sparkline
stacked
stackType
toolbar
type
width
zoom
colors
dataLabels
fill
forecastDataPoints
grid
labels
legend
markers
noData
plotOptions
area
bar
bubble
candlestick
boxPlot
heatmap
treemap
pie
polarArea
radar
radialBar
responsive
series
states
stroke
subtitle
theme
title
tooltip
xaxis
yaxis
方法
render
exec
updateOptions
updateSeries
appendSeries
toggleSeries
showSeries
hideSeries
zoomX
resetSeries
appendData
toggleDataPointSelection
addXaxisAnnotation
addYaxisAnnotation
addPointAnnotation
removeAnnotation
clearAnnotations
dataURI
destroy
setLocale
toggleDataPointSelection - Apexcharts中文手册 - 笔下光年
网站首页
toggleDataPointSelection
#### 语法 `toggleDataPointSelection (seriesIndex, dataPointIndex)` 此方法允许您选择/取消选择特定系列的数据点。 #### 参数 | 名称 | 类型 | 默认值 | 说明 | |----------------|--------|-----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | seriesIndex | Number | undefined | 系列数组的索引。 如果您正在渲染 pie/donut/radialBar 图表,这充当 `dataPointIndex` 并且是您必须提供的唯一内容,因为 pie/donut/radialBar 不支持多系列图表。 | | dataPointIndex | Number | undefined | 在前一个参数中选择的系列中的数据点的索引。 在 pie/donut/radialBar 中不需要。 | #### 返回值 返回被切换的 DOM 元素。 如果没有找到,返回 null #### 示例 ```javascript var chart = new ApexCharts(el, { chart: { type: 'bar' }, series: [{ data: [32, 44, 65, 12, 63] }, { data: [42, 12, 43, 53, 44] }] }); chart.toggleDataPointSelection(1, 3); // This will toggle the 4th element of the 2nd series i.e. 53 and highlight the DOM element with a different shade. ``` 问:你怎么知道哪些数据点已经被选中? 答:您可以使用包含必要信息的 `chart.w.globals.selectedDataPoints` 数组。 在上面的示例中,`chart.w.globals.selectedDataPoints` 将包含 `[undefined, [3]]`。 这也会触发 `chart.dataPointSelection` 事件
上一篇:
appendData
下一篇:
addXaxisAnnotation