GWT 折线图选项
我需要为图表中的不同系列设置不同的线宽。可以使用此处的系列选项来完成此操作http://code.google.com/intl/sv-SE/apis/chart/interactive/docs/gallery/linechart.html#Configuration_Options 。然而,这个选项在 GWT 中不可用,这导致了我的问题。
我可以:
- 为 GWT 编写一个包装器。 http://code.google.com/p/gwt-google-apis /wiki/VisualizationNewWrapper
- 使用Options.set(...) 方法。 http://gwt-google-apis.googlecode.com/svn/javadoc/visualization/1.1/com/google/gwt/ajaxloader/client/Properties.html#set%28java.lang.String, %20com.google.gwt.core.client.JavaScriptObject%29
这两种选择的问题是,当系列选项采用对象时,我不知道该怎么做:
series: [{color: 'black', visibleInLegend: false},{}, {}, {color: 'red', visibleInLegend: false}]
series: {0:{color: 'black', visibleInLegend: false}, 3:{color: 'red', visibleInLegend: false}}
我该怎么做 这?
I need to set different line width to different series in a chart. This can be done using the series option here http://code.google.com/intl/sv-SE/apis/chart/interactive/docs/gallery/linechart.html#Configuration_Options . However this option is not available in GWT which leads to my question.
I could:
- Write a wrapper for GWT. http://code.google.com/p/gwt-google-apis/wiki/VisualizationNewWrapper
- Use the Options.set(...) method. http://gwt-google-apis.googlecode.com/svn/javadoc/visualization/1.1/com/google/gwt/ajaxloader/client/Properties.html#set%28java.lang.String,%20com.google.gwt.core.client.JavaScriptObject%29
The problem for both those alternatives is that I don't know how to do either when the series option takes an object:
series: [{color: 'black', visibleInLegend: false},{}, {}, {color: 'red', visibleInLegend: false}]
series: {0:{color: 'black', visibleInLegend: false}, 3:{color: 'red', visibleInLegend: false}}
How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
方法 2 更简单:
您可以使用
Options.set()
并传递另一个Options
实例。至少对于第二种选择类型。
series: {0:{color: 'black',visibleInLegend: false}, 3:{color: 'red',visibleInLegend: false}}
您可以使用以下代码:Method 2 is easier:
You can use
Options.set()
and pass anotherOptions
instance.At least for the second option type.
series: {0:{color: 'black', visibleInLegend: false}, 3:{color: 'red', visibleInLegend: false}}
you can use following code: