Search the Community

Showing results for tags 'y-axis'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 7 results

  1. Hi, I have a new request. Currently, we cannot do whatever we want about the y-axis. I mean we should be able to specify what values we want to show exactly. Whatever are the values in the dataset or whatever is the height of the graph, I want to be able to specify exactly y axis labels needed : in example if I want to have 25% 50% 75% or 10% 20% etc or 22% 44% 88% or 7% 14% 21% etc... etc... How could I do this ? I don't think it's possible with FS at this time. A new functionality related to this could be very nice to be developed I think. What do you think ?
  2. When using an mscombi2d chart with y-axis values: 'AxisMinValue: 0, yAxisMaxValue: someOddValue The zero value for the y-axis is not displayed. If the yAxisMaxValue is even then it is displayed. In fact this happens whenever the scale is not a multiple of the gap, ie: min: 0, max 13. This is new to 3.13.x
  3. Hi, I was wondering if it was possible to set default values for your Y-Axis. For example if I have the values y: [98644729, 88484843, 56464921] x: [1, 2, 3]. I want to be able to have the y-values on the left(check image) show exactly [98644729, 88484843, 56464921] instead of showing generic values
  4. Hello, We need a possibility to automatically re-scale Y-axis after clicking on a legend to hide the corresponding dataset series (one or more). In a recent response on this forum (from 2013), you said that it's not supported yet. We're currently using FusionCharts v3.9.0, but also tried v3.11.2. It seems there is no difference - Y-axis is not automatically re-scaled after hiding series. I was wondering: has it been implemented in 3.11.2 (maybe we just overlooked)? if not, are there any plans to add support for this in the near future? Thank you, Dragan.
  5. Hi, I need to plot a chart which was a collection of points like {key:string, value: string}. And the keys is a collection which are already defined like(A, B, C, D), So, which chart can I use? Thank you, Markboo
  6. Hi, I'm working on a site containing existing FusionChart charts. I'm trying to revise the charts per client request. I'm able to do most of the revisions, but I'm stuck on this last one. 1) Is there a way to specifically choose the y-axis increments? I understand I can change the number of dividers. However the math isn't adding up on some of them. For instance, they have one chart with a y-axis range of 0 to 30. They'd like the increments to be 0, 5, 10, 15, 20, 25, 30. I can only get it to be 0, 6, 12, 18, 24, 30. 2) Also, their stacked column charts go to 110%. They were told previously it couldn't be fixed. When I specify the maximum to be 100%, it hides the top label (110%), but the y-axis increments are still 0, 22%, 44%, 66%, 88%...implying that the chart goes to 110%. Any suggestions or help would be very much appreciated! Thanks.
  7. Hello, I encounter a prohibitive problem using the Spline or MSSpline charts. Even if I configure the chart with a min Y-axis value to 0, if some values are set to 0, the spline is sometimes displayed below this value, on flash or javascript versions. Moreover, the chart automatically changes the min Y-axis value, depending this anormal position. The following captures show the example from here: http://www.fusioncharts.com/demos/gallery/chart_barebone.asp?spline_3 which I just customized to replace some values with 0. Flash version JS version I tried to define the Y axis min value and to prevent the chart for auto adapting the display (setAdaptiveYMin to 0). Here is the XML code: <chart anchorAlpha="0" palette="4" caption="Sales Comparison" numdivlines="4" lineThickness="2" showValues="0" formatNumberScale="1" decimals="1" anchorRadius="2" numberPrefix="$" yAxisMinValue="0" setAdaptiveYMin="0" shadowAlpha="50"> <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 seriesName="Current Year" color="A66EDD" anchorBorderColor="A66EDD" anchorRadius="4"> <set value="1127654" /> <set value="0" /> <set value="0" /> <set value="0" /> <set value="1324454" /> <set value="1357654" /> <set value="1296234" /> <set value="1359456" /> <set value="1391565" /> <set value="1414454" /> <set value="1671565" /> <set value="1134454" /> </dataset> <dataset seriesName="Previous Year" color="F6BD0F" anchorBorderColor="F6BD0F" anchorRadius="4"> <set value="927654" /> <set value="1126234" /> <set value="999456" /> <set value="1111565" /> <set value="1124454" /> <set value="1257654" /> <set value="1196234" /> <set value="1259456" /> <set value="1191565" /> <set value="1214454" /> <set value="1371565" /> <set value="1434454" /> </dataset> <styles> <definition> <style name="MyXScaleAnim" type="ANIMATION" duration="0.7" start="0" param="_xScale" /> <style name="MyYScaleAnim" type="ANIMATION" duration="0.7" start="0" param="_yscale" /> <style name="MyAlphaAnim" type="ANIMATION" duration="0.7" start="0" param="_alpha" /> </definition> <application> <apply toObject="DIVLINES" styles="MyXScaleAnim,MyAlphaAnim" /> <apply toObject="HGRID" styles="MyYScaleAnim,MyAlphaAnim" /> </application> </styles> </chart> I believe this is an anormal behavior of the chart. It shouldn't display a part of the chart below the min Y value, and it shouldn't move the Y-axis, based on this bad display. How can I manage to fix this display? Thank you a lot for your support. monsieurjplus