Tag: highcharts drilldown

Highcharts:为钻取添加额外数据

据我所知,钻取数据格式是这样的: data: [[‘foo1’, 2], [‘foo2’, 3], [‘foo3’, 2]] 我实际上成功地向每个数组添加数据,如下所示: data: [[‘foo1’, 2, 111], [‘foo2’, 3, 222], [‘foo3’, 2, 333]] 但是,展示它给我带来了麻烦。 据我所知,对于工具提示格式化程序,使用this.point.name,this.point.y,this.x或this.percentage访问数据。 如何在这一点上检索额外的数据呢?

在highcharts中向下分组列图表的向下钻取

我正在尝试在highcharts中对分组列图进行深入分析。 我的图表在这里: $(function () { // Create the chart $(‘#container’).highcharts({ chart: { type: ‘column’ }, title: { text: ‘Basic drilldown’ }, xAxis: { type: ‘category’, categories: [ “2011-12”, “2012-13”, “2013-14”, “2014-15”, “2015-16” ] }, legend: { enabled: false }, plotOptions: { series: { borderWidth: 0, dataLabels: { enabled: true, } } }, series: [ { […]

Highcharts明细并结合图表类型

我想在我的钻取图表(在子图表中)和样条曲线上混合使用: https : //jsfiddle.net/lostrailler/Ljotp059/ 但是当我努力的时候,我并没有同时。 这是我的代码: var chart = new Highcharts.Chart({ chart: { renderTo: ‘container’, type: ‘column’ }, title: { text: ‘Scores par paliers’ }, xAxis: { type: ‘category’, labels: { rotation: -45, align: ‘right’, style: { fontFamily: ‘Verdana, sans-serif’ } }, min: 0 }, yAxis: { title: { text: ‘Score’ }, max: 100, tickInterval: […]