dpereyra

Members
  • Content count

    4
  • Joined

  • Last visited

About dpereyra

  • Rank
    Forum Newbie
  1. You're welcome, thanks for your time.
  2. I understand how the bubble graph works, and it's working fine with elements with x / y values greater than 0. I also fixed this adding 0.01 to each value, because it's close enough and not equal to 0. If you tell me x=0 and y=0 are not valid values, I can understand it, but it may need a revision, as in my graph currently x=0 and y=0 values are valid values and must be rendered. Anyway, i think it's a division by zero bug, gettin max-x (which is 0) and calculating the division lines by dividing something by max-x.
  3. Sorry if I didn't explained it well. The problem is not the size of the bubble. As you can see in the xml i've pasted, it says z='1.0'. The real problem is the position of the element on the graph, and the division lines also displaying incorrectly. Note that this effect is noted when just one element is rendered. Thanks for your time.
  4. I've a bubble chart with just one bubble, whose position is X=0 and Y=0. The problem I have is the positions on the X axis and Y axis are calculed wrong, setting max Y value 100, and y don't know which huge number for max X value. I've tried setting all the documented axis settings with no luck. Finally, I've found that if I change '0' with '0.1' in set x and y positions, the graphs shows well formed, so I suppose it's a matter of a division by zero catch. This is the xml: [chart showValues='1' use3DLighting='1' is3D='1' showPlotBorder='0' chartRightMargin='30' adjustDiv='0' xAxisMinValue='0' xAxisMaxValue='5' yAxisMinValue='0' yAxisMaxValue='5' caption='My Caption' subcaption='My Subcaption' xAxisName='X Axis Name' yAxisName='Y Axis Name'> [categories> [category x='0' label='0' /> [category x='1' label='1' showVerticalLine='1' /> [category x='2' label='2' showVerticalLine='1' /> [category x='3' label='3' showVerticalLine='1' /> [category x='4' label='4' showVerticalLine='1' /> [category x='5' label='5' /> [/categories> [dataSet showValues='0'> [set x='0' y='0' z='1.0000' alpha='90' name='Element Name' toolText='Element Name and Info' color='B4CC81' /> [/dataSet> [/chart>