achan

Members
  • Content count

    4
  • Joined

  • Last visited

Everything posted by achan

  1. Hi, I have an issue with Line charts as the data values are overlapping each other. Basically I would like the chart to look better without resizing the actual chart. Is this possible? Also, The first data point, always overlaps with the y axis. here is my DATA: var divNewLeadsAndBMsXML = "<chart Caption='New Leads And Buyer Matches' ShowValues='1' ShowBorder='0' LegendNumColumns='1' PaletteColors='B63729,035AC8' BGColor='FFFFFF' ValuePosition='ABOVE' CanvasBorderThickness='.5' LegendBorderThickness='.5' PlotBorderThickness='0' BaseFont='Inherit' CaptionFontBold='0' PlotGradientColor=' ' AlternateHGridColor='#ffff' DivLineThickness='.5' ShowLegend='1' AnchorRadius='.1' NumDivLines='5' ><styles><definition><style name='myCaption' type='font' size='14'/></definition><application><apply toObject='Caption' styles='myCaption' /></application></styles><categories><category Label='May' /><category Label='Jun' /><category Label='Jul' /><category Label='Aug' /><category Label='Sep' /><category Label='Oct' /><category Label='Nov' /><category Label='Dec' /><category Label='Jan' /><category Label='Feb' /><category Label='Mar' /><category Label='Apr' /></categories><Dataset border='0' seriesName='New Buyer Matches' ><set border='0' value='6' /><set border='0' value='3' /><set border='0' value='4' /><set border='0' value='0' /><set border='0' value='1' /><set border='0' value='7' /><set border='0' value='8' /><set border='0' value='6' /><set border='0' value='0' /><set border='0' value='3' /><set border='0' value='1' /><set border='0' value='0' /></Dataset><Dataset border='0' seriesName='New Leads' ><set border='0' value='15' /><set border='0' value='6' /><set border='0' value='7' /><set border='0' value='4' /><set border='0' value='2' /><set border='0' value='24' /><set border='0' value='13' /><set border='0' value='9' /><set border='0' value='2' /><set border='0' value='9' /><set border='0' value='32' /><set border='0' value='1' /></Dataset></chart>";FusionCharts.setCurrentRenderer('javascript');var FusionChartdivNewLeadsAndBMs = new FusionCharts("FusionCharts/MSLine", "FC_divNewLeadsAndBMs", "250", "250"); FusionChartdivNewLeadsAndBMs.setXMLData(divNewLeadsAndBMsXML);var CallToRender_divNewLeadsAndBMs=FusionChartdivNewLeadsAndBMs.render("divNewLeadsAndBMs");
  2. Line Chart data overlap

    no that didn't really help. I tried putting first dataseries as above, then second dataseries as below, but the chart still looks the same. well I mean by better is for the data values not to overlap with the Line chart / x-axis / y-axis / with other data values. Is this feasible?
  3. Hi, basically my issue is that the data goes inside the bar graph. We don't like that, and would like the data value to be always above of the bar graph. I thought of adding yAxisMaxValue to give extra space, to keep the data value above the bar however, the numDivLines becomes only 1. Even If I set it specifically I only see one line. this is my XML var divListingPriceVsRentedXML = "<chart Caption='Listed VS Rented Price' NumberSuffix='%' ShowValues='1' ShowBorder='0' LegendNumColumns='1' PaletteColors='B63729,959595,666666' BGColor='FFFFFF' ValuePosition='ABOVE' CanvasBorderThickness='.5' LegendBorderThickness='.5' PlotBorderThickness='0' BaseFont='Inherit' CaptionFontBold='0' PlotGradientColor=' ' AlternateHGridColor='#ffff' DivLineThickness='.5' ShowLegend='1' AnchorRadius='.1' yAxisMaxValue='142' numDivLines='6' ><styles><definition><style name='myCaption' type='font' size='14'/></definition><application><apply toObject='Caption' styles='myCaption' /></application></styles><set border='0' label='Agent' value='81.81' /><set border='0' label='Office' value='0.00' /><set border='0' label='Region' value='118.63' /></chart>";FusionCharts.setCurrentRenderer('javascript');var FusionChartdivListingPriceVsRented = new FusionCharts("FusionCharts/Column2D", "FC_divListingPriceVsRented", "250", "250"); FusionChartdivListingPriceVsRented.setXMLData(divListingPriceVsRentedXML);var CallToRender_divListingPriceVsRented=FusionChartdivListingPriceVsRented.render("divListingPriceVsRented");