我有列数据类型的高图是" Granules"。此图表与表Hasil.ini示例相关联
Hasil
| ................... | butiran |
| 2015/02/25 | 53 |
| 2015/03/01 | 66 |
| 2015/03/07 | 78 |
不,我希望每个日期对于一种类型的列有不同的颜色..我希望你理解我的maksud ..tolong帮助我,如何为一个数据列高图分离颜色。谢谢你答案 0 :(得分:2)
在 y轴中使用像这样的数据变量
data: [
{y: 53, color: 'red'},
{y: 66, color: 'blue'},
{y: 78, color: 'green'},
]
希望这可能对您有所帮助
答案 1 :(得分:0)
这是HighChart Jquery的资源代码
$('#容器')highcharts({。 数据:{ 表:'数据表' }, 图表:{ 键入:'列', 保证金:75, options3d:{ 启用:true, alpha:15, 测试版:15, 深度:50, viewDistance:25 }
},
colors: ['<?php echo $warna;?>'],
title: {
text: 'Grafik Perkembangan Hasil Pemeriksaan Pasien'
},
plotOptions: {
column: {
depth: 44
}
},
yAxis: {
allowDecimals: false,
max:<?php echo $data['batas_atas'];?>,
min:<?php echo $data['batas_bawah'];?>,
title: {
text: 'Angka '
}
},
tooltip: {
formatter: function () {
return '<b>' + this.series.name + '</b><br/>' +
this.point.y + ' ' + this.point.name.toLowerCase();
}
}
});
});