Dhruva
Members-
Content count
448 -
Joined
-
Last visited
-
Days Won
2
Everything posted by Dhruva
-
You're welcome!
-
Hello Yasir, Welcome to the forum. Could you please explain your query in more detail? What chart are you using, etc. ?
-
Good to know that you figured it out!
-
Bulb widget showing only upper limit color
Dhruva replied to Dhruva's topic in Using FusionWidgets XT
You're most welcome! -
Hello, Welcome to the forum. I'm afraid it is not possible to do this. :|
-
Hello, You could consider using the numberSuffix='gr' attribute in the <chart> element of the XML, but please note that this will also display the suffix in the original chart itself.
-
Hello, you can do these using attributes available. Please go to http://www.fusioncharts.com/docs/Contents/ChartSS/Area2D.html#Anchor10 and http://www.fusioncharts.com/docs/Contents/ChartSS/Area2D.html#Anchor4 for more details. I hope this helps!
-
Bulb widget showing only upper limit color
Dhruva replied to Dhruva's topic in Using FusionWidgets XT
Hello Kamal, You are inputting the value inside quotes, which is not valid. Also, the color range must be specified in ascending order, which was not the case in the XML you attached. I am pasting the modified XML here, please check: <chart bgColor='000000,000000' bgAlpha='100' canvasBgColor='000000' showValue = '' lowerLimit = '0.0' upperLimit = '1.0'> <colorRange> <color minValue='0.0' maxValue='0.0' code='399E38' /> <color minValue='0.5' maxValue='0.5' code='F87217' /> <color minValue='1.0' maxValue='1.0' code='B41527' /> </colorRange> <value>0.0</value> </chart> I hope this helps! -
Hello George, Welcome to the forum. As the pie charts do not support legend, could you please consider using the grid? More information on the same is available at: http://www.fusioncharts.com/docs/Contents/Grid_Parameters.html
-
You're welcome.
-
Hello, Welcome to the forum. You could consider using a stacked column chart to achieve the effect you have in mind. Please note that you will have to rewrite the data to achieve what you require. I am posting some sample xml for the same: <chart caption='Company Revenue' xAxisName='Month' yAxisName='Revenue' showValues='0' numberPrefix='$'> <categories> <category label='Jan' /> <category label='Feb' /> <category label='Mar' /> <category label='Apr' /> <category label='May' /> <category label='Jun' /> <category label='Jul' /> <category label='Aug' /> <category label='Sep' /> <category label='Oct' /> <category label='Nov' /> <category label='Dec' /> </categories> <dataset> <set value='27400' /> <set value='29800'/> <set value='25800' /> <set value='26800' /> <set value='29600' /> <set value='32600' /> <set value='31800' /> <set value='36700' /> <set value='29700' /> <set value='31900' /> <set value='34800' /> <set value='24800' /> </dataset> <dataset> <set value='-10000'/> <set value='-11500'/> <set value='-12500'/> <set value='-15000'/> <set value='-11000' /> <set value='-9800' /> <set value='-11800' /> <set value='-19700' /> <set value='-21700' /> <set value='-21900' /> <set value='-22900' /> <set value='-20800' /> </dataset> </chart> I hope this helps!
-
Hello, The attribute does respond, but the changes are not very visually apparent, especially if there are a lot of columns. Could you please try using the maxColWidth='pixelvalue' attribute in the <chart> element and try again?
-
Hello, Could you please consider using showLabels='0' in the <chart> element, and the displayValue attribute in the <set> element, and try again? However, at this time, the position of the displayValue cannot be specified.
-
Hello, It is designed thus for ease of use in case of simple implementations.
-
Show Tooltip for data when hovering anywhere over it in the x axis
Dhruva replied to scottybowl's topic in General usage
Hello, The tooltip appears just above a data point, as opposed to over the data point. Could you please confirm if this is not happening? -
How to set dimensions for legend section of MSCombiDY2D chart
Dhruva replied to Koushik's topic in XML Issue
No, unfortunately. However, you could append to the end of 'Mailsets Mailed' (eg- 'Mailsets Mailed ' ) to put a newline break there. I hope this helps. -
Hello, Welcome to the forum. You could consider using a a scroll area chart. Please check the following link for more information on the same: http://www.fusioncharts.com/docs/Contents/ChartSS/ScrollArea2D.html
-
I just checked, the d/l link seems to be working. Could you please try downloading the file from IE?
-
You're welcome. This should be available in FusionCharts v4, which is scheduled for sometime around end 2009.
-
Hello David, If you need a stacked area chart, could you please consider using the StackedArea2D chart? The following link has more information on the same: http://www.fusioncharts.com/docs/Contents/ChartSS/StArea2D.html
-
Is there a transition effect when updating chart data?
Dhruva replied to aafagionato's topic in General usage
Hello, I'm afraid transitions are not supported, but the chart can be reanimated (as in, dataplots redrawn, with animation) every time a chart data is refreshed. -
Glad to know. And you're most welcome.
-
Hello all, I suggest you set the maximum and minimum limits ot the two manually to the same values, using the PYAxisMaxValue, PYAxisMinValue, SYAxisMaxValue SYAxisMinValue attributes in the chart element. Please take care to ensure that the data points to be plotted lie within the range you set manually. I hope this helps.