
afirsich
Members-
Content count
6 -
Joined
-
Last visited
About afirsich
-
Rank
Forum Newbie
-
I tried them first and they directed me to the files that I already have. I have the licensed js files for XT service release 2. I specifically need the licensed version of the above mentioned "fallback" files. Do they exist?
-
I realize this is an older thread, but I am having troubles with the workaround listed below. I have it working with the exception that I have a "FusionCharts - HighCharts" watermark on the chart itself. Is there anyway to get licensed copies of the required fallback js files?
-
S-Axis Trendline Being Displayed On P-Axis Values In Html5 Version
afirsich replied to afirsich's topic in Bug Reports
Doesn't appear to have fixed it. I even went to a second machine that I know has never loaded fusion charts to ensure it wasn't a cache issue. -
S-Axis Trendline Being Displayed On P-Axis Values In Html5 Version
afirsich replied to afirsich's topic in Bug Reports
Any word on this? Is this an issue with the swf file itself or the code, something else? -
S-Axis Trendline Being Displayed On P-Axis Values In Html5 Version
afirsich replied to afirsich's topic in Bug Reports
Even with your screenshot it is still incorrect. data b goal line on the right graph is not drawn on the secondary axis value of 3. It is drawn at the secondary axis value of 2 but at the primary axis value of 3. if you look at the flash and html5 in your screen shot, they are clearly not the same graph. I've taken your screenshot and made some notes on it to indicate what I am seeing. -
S-Axis Trendline Being Displayed On P-Axis Values In Html5 Version
afirsich posted a topic in Bug Reports
I'm new to Fusion Charts so this may be an error on my end but i don't think it is since the flash version renders correctly. I've found that when displaying 2 trendlines, one on each axis of a dual axis chart, the secondary trendline is being displayed on the values of the primary axis. This is only when drawn in HTML5, the flash version is fine. here is a xml sample to be used with MSColumn3DLineDY.swf <chart caption='Chart Title' showValues= '0' pYAxisName='Data A' sYAxisName='Data B' sYAxisMinValue='0' sYAxisMaxValue='7'> <categories> <category label='12/18 - 12/24' /> <category label='12/25 - 12/31' /> <category label='1/1 - 1/7' /> <category label='1/8 - 1/14' /> <category label='1/15 - 1/21' /> </categories> <dataset seriesName='SU'> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> </dataset> <dataset seriesName='M'> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> </dataset> <dataset seriesName='TU'> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> </dataset> <dataset seriesName='W'> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> <set value='2' /> </dataset> <dataset seriesName='TH'> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> </dataset> <dataset seriesName='F'> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> <set value='9' /> </dataset> <dataset seriesName='SA'> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> </dataset> <dataset seriesName='Data B' renderas='line' parentYAxis='s'> <set value='0' /> <set value='0' /> <set value='0' /> <set value='0' /> <set value='2' /> </dataset> <trendlines> <line parentYAxis='P' startValue='6' isTrendZone='0' color='cdcd00' displayvalue='Data A Goal' valueOnRight='0'/> <line parentYAxis='S' startValue='3' isTrendZone='0' color='cdcd00' displayvalue='Data B Goal' valueOnRight='0'/> </trendlines> </chart>