mbielen

Members
  • Content count

    6
  • Joined

  • Last visited

About mbielen

  • Rank
    Forum Newbie
  1. Bubble Chart Bubbles Cut Off

    Attached is the chart snipped and teh XML used to generate the bubble chart. Only half a bubble appears when the value is 0 or 100. I would like to display the full bubble by extending the chart plot area. Thank you bubble_chart.xml
  2. Bubble Chart Bubbles Cut Off

    I'm creating a bubble chart with a y axis of 0-100 (percent). IF I have a bubble that is 0 or 100 half of the bubble is cut-off. I tried increasing the yAxisMinValue and yAxisMaxValue to -10 and -110 respectively to extend the chart plot area. The chart displays properly but the y axis legend is then based on -10 to 110 which throws the axis values off. Any recommendation to simply extend the min and max plotting area? Thank you
  3. Missing Labels

    Hello: I have done the following: 1) Remove the yAxisMaxValue='5' from the <chart> element 2) Manually adjust the yAxisMaxValue='108' in the <chart> element Please test it for yourself using the provided XML above. The value does not get displayed. FusionCharts should auto-calculate the max value and add padding when required to display all the values. This is not always happening such as in the "Service" column of the chart. If I manually set yAxisMaxValue='120', the value does appear since there is enough room for the data point. However, I can't set the yAxisMaxValue on-the-fly because I'd have to read all of the chart data to obtain the max value, add maxValue+10 to manually pad the yAxisMaxValue then re-read the data to render the chart. This would double the time required to generate a chart. The purpose of the yAxisMaxValue='5' is that if we have a chart value that is only 1 for example, Fusion Charts defaults to decimals such as 0.2, 0.4, 0.6, 0.8, 1.0 and 1.2 which would not make sense when viewing the chart. By having the yAxisMaxValue at 5, integers are always displayed. Any further suggestions to correct this issue are welcome. Thank you.
  4. Missing Labels

    Does anyone on the Fusion Charts team have a suggestion? Is this a bug or do I need to alter the way I'm creating the chart?
  5. Missing Labels

    Hello: I have attached the XML source code and the jpeg of the Scrolling Stacked 2D Column chart. You will notice that the Service column is not displaying the total of 108. The maximum axis value generated by Fusion charts is 110. The UM-Check column does display a valid value. I have also had instances where the value appears above the maximum axis value or it is partially cut off. The missing value appears randomly very few times, but when it does appear, it can always be duplicated. Any info or suggestions are appreciated. Thanks Mike ScrollStackedColumn2D Missing Label.txt
  6. Missing Labels

    I have a stacked 3D column chart that displays most of the total column values properly. If fusion charts calculates the maximum value of the chart at 100 and I have a bar at 98, the value will not display. Values that are not as close the the axis maximum display fine. If the maximum chart colum is 100, the value also displays. How can I get all the total values to always display?