Jump to content
JChartFX Community

Telesto

Members
  • Posts

    2
  • Joined

  • Last visited

Telesto's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thank you for your reply JuanC, it was really helpful and it solved my problem indeed! Got one last question on the matter though.. My XValues are dates in ISO format such as "2012-09-21T23:00:00.000Z" But if I use the %x symbol I get only the date part of the value and not the time part. So I get something like "09/21/2012" instead of "09/21/2012 23:00 GMT+03:00" or something like that. Is there a work-around on this? Because I see that all the charts dont show the time at all and they only keep the date part of the ISO formated date that I provide. Thanks in advance
  2. Indeed, I try chart1.setToolTipFormat() and it doesnt recongize it as a function at all... My code is quite simple as well var chart1; chart1 = new cfx.Chart(); chart1.setGallery(cfx.Gallery.Bar); var divHolder = document.getElementById('ChartDiv'); chart1.create(divHolder); var maskString = "I'm series: " + "%S " + " my value is: " + "%v"; chart1.setToolTipFormat(maskString); I've imported literally every .js in the latest available edition (7.1.4982)except those that introduce new galleries... <script type="text/javascript" src="jchartfx.7.1.4982/js/jchartfx.system.js"></script> <script type="text/javascript" src="jchartfx.7.1.4982/js/jchartfx.coreVector.js"></script> <script type="text/javascript" src="jchartfx.7.1.4982/js/jchartfx.advanced.js"></script> <script type="text/javascript" src="jchartfx.7.1.4982/js/jchartfx.annotation.js"></script> <script type="text/javascript" src="jchartfx.7.1.4982/js/jchartfx.coreVector3d.js"></script> <script type="text/javascript" src="jchartfx.7.1.4982/js/jchartfx.data.js"></script> <script type="text/javascript" src="jchartfx.7.1.4982/js/jchartfx.ui.js"></script> <script type="text/javascript" src="jchartfx.7.1.4982/js/jchartfx.vector.js"></script> Are we missing something here? Because this is in the documentation as well yet.... Thanks in Advance
×
×
  • Create New...