使用highcharts调整数据点的大小

时间:2012-06-28 21:41:49

标签: javascript charts highcharts

我们正在使用highcharts并尝试自定义图表,使其类似于: enter image description here

我们能够设置记录的颜色,并使用lineWidth属性增加线条的粗细,但无法找到自定义数据点的方法,因此它们总是圆形且大于更粗的线条。这就是它在这一点上的样子: enter image description here

另外,我们找不到删除默认灰色水平线的方法。

帮助!

1 个答案:

答案 0 :(得分:33)

此灰色线称为网格线,您可以按照reference

自定义它们

删除网格线

 yAxis: {
     gridLineWidth: 0
 }

喜欢这个example

更改标记宽度

plotOptions: {
    series: {
        marker: {
            enabled: true,
            symbol: 'circle',
            radius: 7
        }
    }
}

demo

如果要自定义系列标记,可以查看here