oferfr Report post Posted February 27, 2007 Hello, How to display time-duration values in charts? Example value : 00:00:02:88 (2 seconds, 88 mili-seconds). We must see 2 digits for the hours, minutes and seconds, and three digits for the mili-seconds. Best Regards, Ofer Frohlich Share this post Link to post Share on other sites
oferfr Report post Posted February 27, 2007 This question was about FusionCharts_PS1. Which version is it? Share this post Link to post Share on other sites
Pallav Report post Posted February 27, 2007 I'm afraid it's not currently possible with FusionCharts. Share this post Link to post Share on other sites
oferfr Report post Posted February 28, 2007 Is it possible with FusionCharts v.3 ? Share this post Link to post Share on other sites
mick Report post Posted July 31, 2008 Pallav (2/27/2007)I'm afraid it's not currently possible with FusionCharts. So how does one create charts where the y axis is a duration? Share this post Link to post Share on other sites
Janka74 Report post Posted June 4, 2012 (edited) i don't want use this sample: http://docs.fusionch...um_Scaling.html <chart defaultNumberScale='s' numberScaleValue='60,60,24,7' numberScaleUnit='min,hr,day,wk'> <set label='A' value='38' /> <set label='B' value='150' /> <set label='C' value='81050' /> <set label='D' value='334345' /> <set label='E' value='534345' /> </chart> because i like see 150 -> 2min. 30 sec. no 2,5 min It's possible use an ALIAS TAG to force the conversion? For example: <chart > <set label='A' value='38' alias='38 sec' /> <set label='B' value='150' alias='2 min. 30 sec' /> </chart> Edited June 4, 2012 by Janka74 Share this post Link to post Share on other sites
Guest Sumedh Report post Posted June 5, 2012 i don't want use this sample: http://docs.fusionch...um_Scaling.html <chart defaultNumberScale='s' numberScaleValue='60,60,24,7' numberScaleUnit='min,hr,day,wk'> <set label='A' value='38' /> <set label='B' value='150' /> <set label='C' value='81050' /> <set label='D' value='334345' /> <set label='E' value='534345' /> </chart> because i like see 150 -> 2min. 30 sec. no 2,5 min It's possible use an ALIAS TAG to force the conversion? For example: <chart > <set label='A' value='38' alias='38 sec' /> <set label='B' value='150' alias='2 min. 30 sec' /> </chart> Hi, You can use dsiplayValue attribute for displaying custom value. <chart > <set label='A' value='38' displayValue='38 sec' /> <set label='B' value='150' displayValue='2 min. 30 sec' /> </chart> Share this post Link to post Share on other sites