jordan Report post Posted January 26, 2009 Hi, I am new to fusion charts. How can i set minimum value for X-Axis like yAxisMinValue for Y-Axis? I am displaying numbers in X-Axis (like 0, 1, 2, 3...) instead of text. Is there a way to set this since its a very urgent requirement. Share this post Link to post Share on other sites
Rahul Kumar Report post Posted January 29, 2009 Hi, I am afraid, it is not possible as of now. Share this post Link to post Share on other sites
kpsrikanth Report post Posted January 30, 2009 Rahul Why is x-axis limited to labels instead of values. (Just like 'y' axis). Is this a limitation from Fusion Charts. I have requirement to plot values based on time of collection. X Y 12:10 10 Point 1 12:20 30 Point 2 12:30 20 Point 3 12:50 10 Point 4 Can I plot this graph with labels 12:10, 12:20, 12:30 12:50 and see that the distance on X-Ais is doubled between Point '3' and Point '4' I also investigated one way to do this is have labels 12:10, 12:20, 12:30, 12:40, 12:50 and use connect NULL points options. Now the interesting thing is I have lots of points between 12:10 and 12:20 12:10:10 12:10:15 12:10:30 12:10:52 I don't want these points to be shown on X-axis but really want to plot them on the graph. Is it possible. I do have access to Fully licensed version of Fusion Charts Software. Thanks for actively replying to all the POSTS. Share this post Link to post Share on other sites
Rahul Kumar Report post Posted February 2, 2009 (edited) Hi, Can I plot this graph with labels12:10, 12:20, 12:30 12:50 and see that the distance on X-Ais is doubled between Point '3' and Point '4' It is not possible as of now. I don't want these points to be shown on X-axis but really want to plot them on the graph.Is it possible. I do have access to Fully licensed version of Fusion Charts Software. Please try using null values to the <set> element, this will make X-Axis label hidden and reserves the space for the null value, also just after that when you add another value to <set> element, it will come after the previous value (by making some distance). Example: <chart> .... ..... ... <set value='10' label='12:10' /> <set ...... <set ...... <set ...... <set value='' /> or <set /> <set value='30' label='12:60' /> <set ...... ...... ...... </chart> This might solve your issue. Edited February 2, 2009 by Guest Share this post Link to post Share on other sites