有没有办法给 FUSION CHARTS FREE 中折线图的所有坐标编号
我使用以下内容创建了一个融合折线图:
var chart = new FusionCharts("Charts/FCF_MSLine.swf", "chart_id", "600", "500");
chart.setDataXML(XmlData);
chart.render("divDisplay");
我得到一个具有许多坐标的折线图,但坐标点未命名。 **
坐标点值必须 出现在坐标点 线图。有什么办法可以 实现这一目标。
** 请帮助我。
I created a fusion line chart using the following:
var chart = new FusionCharts("Charts/FCF_MSLine.swf", "chart_id", "600", "500");
chart.setDataXML(XmlData);
chart.render("divDisplay");
I am getting a line chart which is having many co-ordinates but the co=ordinate points are not named.
**
The co-ordinate point values must
appear for the co-ordinate point in
the line garph. Is there any way to
achieve this.
**
PLz help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望显示以下所有值,请尝试在
或
中使用showValues='1'
每条线的锚点(坐标点)。如果您在
或
中已有showValues='0'
,请设置为 1。希望这会有所帮助。
此外,请在此处提供您用于调试问题的 XML。
请尝试下面显示的 XML:
Please try once using
showValues='1'
in<graph>
or in<dataset>
if you wish to show all the values of the anchors (co-ordinate points) of each line.If you already have
showValues='0'
in<graph>
or in<dataset>
please set to 1.Hope this helps.
Additionally, please provide here the XML which you use for debugging the issue.
Please try the XML shown below: