DerekW

Members
  • Content count

    9
  • Joined

  • Last visited

About DerekW

  • Rank
    Forum Newbie
  1. Thanks for the response... I do not understand why you set the y max value to 259. What was wrong with 255? I dynamically generate the charts, so I would need to know this if it represents a fix. Some of the tags you saw in there are placeholders -- my script replaces them with valid XML. (to my knowledge, though, those tags don't cause errors)
  2. your code tag didn't seem to be working.... Attached is the XML file that results in y-axis scale values with lots of decimal points. myXML.xml
  3. Here you go... version 3.1.1 Info: Chart loaded and initialized. Initial Width: 550 Initial Height: 275 Scale Mode: noScale Debug Mode: Yes Application Message Language: EN Version: 3.1.1 Chart Type: 2D Scatter Chart
  4. Still have the decimal problem: ---------------------------------- chart yAxisValuesPadding="15" animation="0" canvasLeftMargin="25" showBorder="1" borderThickness="0" borderAlpha="0" baseFontColor="d6d6d6" caption="" numberPrefix="" showValues="0" canvasBgColor="000000" canvasBgAlpha="10" canvasBorderColor="3c3c3c" canvasPadding="55" canvasBorderThickness="2" canvasBorderAlpha="0" bgAlpha="0,0" showAlternateHGridColor="0" showVLineLabelBorder="0" chartTopMargin="0" chartRightMargin="3" chartBottomMargin="20" chartLeftMargin="0" plotGradientColor="FFFFFF" plotFillColor="000000" plotFillAlpha="25" plotBorderThickness="2" plotBorderColor="ededed" toolTipBgColor="181818" toolTipSepChar="-" divLineColor="3c3c3c" divLineThickness="2" divLineAlpha="0" showZeroPlane="0" formatNumber="0" formatNumberScale="0" yAxisName="Body Fat %" decimals="0" adjustDiv="0" decimalPrecision="0" yAxisValueDecimals="0" numberSuffix="%" xAxisMaxValue="335" xAxisMinValue="213" yAxisMaxValue="17" yAxisMinValue="13" numDivLines="5" xAxisName="2009" anchorBgColor="#41A317" --------------------------------------- Tried... still no change. I'm getting up to 13 decimal points. For what it is worth... I do want my anchors to have decimal values to two places... just none on the y-axis display, however.
  5. Realize that this may be in the wrong forum... needs to be in the free forum. Feel free to move. If it is any consolation, I am going to be paying for the product soon.
  6. Is there any reason to believe that this won't work if I'm using the free version? I don't see why my decimals are not adjusted.
  7. Hi... having this problem. (using free version) My y-axis values keep coming out very ugly... 29.000003, etc.... just way too many decimals. decimals="0" adjustDiv="0" yAxisValueDecimals="0" numberSuffix="%" xAxisMaxValue="335" xAxisMinValue="213" yAxisMaxValue="33" yAxisMinValue="14" numDivLines="5" xAxisName="2009" anchorBgColor="#41A317"> Regardless of my decimals or yAxisDecimals attribute, it does not listen. I'm trying to come up with a scheme that leaves no decimals on the y-axis.
  8. vline without associated set element

    pseudo code: set val=1000> vline label="Jan"> vline label="Feb"> vline label="Mar"> set val=2000> vline label="Apr"> vline label="May"> None of my vlines show up unless they're associated with one of the set tags... I need them to show up without a set tag -- I need the ability to display more vlines than set tags.
  9. It seems as though we cannot place a vline element -- and have it display -- without having an associated set element. I'm in the situation where I want to show a range of dates that may or may not have values associated. (thus, there could be more vline elements) I'm attempting create a 2d line chart. (line.swf) Perhaps I should go to a different chart type -- I was thinking of scatter. I know I could place the vertical lines as I want this way. However... I wanted to be able to create a vertical line at times that would have different style properties.(specific dates) And while I know I could throw a vline in there... I couldn't position it exactly as I would need to amongst the other category elements as it does not contain an x axis property like my other vertical lines(made with category properties) would have...