0

我正在尝试设置垂直线——在 X 轴上延伸刻度。我要做的是

 axisX:
 {
   categoricalValues: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
   plotStripColor: 'red',
   plotStripDashStyle: 'ShortDashDot'
 }, 

我需要线条是红色的,并且采用了不太重要的“ShortDashDot”样式。我无法使线条出现,尽管我使用了 Solid 和其他值。有什么问题?

4

1 回答 1

0

您唯一缺少的是使用 plotStripWidth 属性设置线条粗细。提供颜色是不够的,因为默认情况下,线条不仅是白色的,而且厚度为 0。

axisX: {
   plotStripColor: 'red',
   plotStripDashStyle: 'ShortDashDot',
   plotStripWidth: 2
}
于 2013-06-27T13:34:39.780 回答