Google烛台图表设置线宽不起作用

时间:2015-03-30 10:19:37

标签: javascript gwt google-visualization

我正在使用谷歌图表(在GWT中使用gwt-charts库),我试图将烛台图表的线宽更改为1,但它无法正常工作

我使用ComboChart和一系列类型的烛台,我尝试将lineWidth设置为1,用于"选项"和"系列"对象,没有运气。

lineWidth可能对烛台类型没有影响吗?

代码:

ComboChart chart = new ComboChart();
ComboChartOptions options = ComboChartOptions.create(); 

Legend legend = Legend.create();
legend.setPosition(LegendPosition.NONE);
options.setLegend(legend);

ComboChartSeries series = ComboChartSeries.create();
series.setType(SeriesType.CANDLESTICK);
series.setLineWidth(1);
options.setSeries(series);
options.setLineWidth(1);


// draw on data update 
...
chart.draw(dataTable, options);

1 个答案:

答案 0 :(得分:0)

不幸的是,candlestick.risingColor.strokeWidthcandlestick.falingColor.strokeWidth只影响蜡烛体。有一个增强请求可以自定义https://github.com/google/google-visualization-issues/issues/1014上的阴影和灯芯,但优先级很低。如果有更多用户对此问题提出异议,那么Google小组可能会加快解决方案的速度。