cdcharts

Members
  • Content count

    6
  • Joined

  • Last visited

About cdcharts

  • Rank
    Forum Newbie
  1. Any ideas on the horizontal black lines and how to get rid of them?
  2. I have done more testing on this. If I change the "numDivLines": property to a number below 15 the black horizontal lines disappear. If the number is increased to 15 or above then the black lines return and it doesn't appear I can control them. Can someone give me an idea of what to set / remove to get rid of the horizontal black lines? Thank you for your help.
  3. Please keep in mind I changed the JSON a little to debug the graph. I added thick dashed div lines across the graph in a gray color. This shows the division lines and the solid black horizontal lines are still loading. I am not sure where they are coming from in the graph or how to turn them off.
  4. The complete JSON is: $("#serviceGraph").insertFusionCharts({ swfUrl: "${request.contextPath}/js/charts/MSColumn2D.swf", renderer: "javascript", width: "1200", height: "800", dataFormat: "json", id: "myChartID", dataSource: { "chart": { "caption": "Test", "showLegend": "0", "showExportDataMenuItem": "1", "rotateLabels": "1", "useRoundEdges": "1", "xAxisName": "", "yAxisName": "PERCENTAGE", "yAxisMinValue": "0", "yAxisMaxValue": "25", "yAxisValuesStep": "0", "showYAxisValues": "1", "divLineIsDashed": "1", "numDivLines": "24", "alternateHGridAlpha": "0", "divLineThickness": "5", "showAlternateHGridColor": "0", "decimals": "1", "showValues": "0", "numberSuffix": "%", "numberPrefix": "", "legendBorderAlpha": "100", "showBorder": "2", "bgColor": "FFFFFF,FFFFFF", "borderThickness": "2", "showPlotBorder": "1", "canvasBorderColor": "8A8A8A", "canvasBorderThickness": "2", "canvasBorderAlpha": "100", "legendShadow": "0", "plotFillAlpha": "100", "plotGradientColor": "" }, "categories": JSON.parse(loadLabels()), "dataset": [ { "seriesname": "testSeries", "color": "E60000", "data": JSON.parse(loadValues()) } ] } });
  5. Please let me add some more information. I would like to have the Y axis range from 0 to 25 with a 1 increment therefore showing 0,1, 2, 3, 4, 5, ... 25. Then I would like to have alternating back colors of gray so the user may see the values on the chart easier. At this point it feels like Fusion makes up it's own values on the Y axis and most of all why is the 5th line dropping out? Thanks for your help.
  6. Fusion / Users, I am rendering a Fusion Chart XT MSColumn2D with 1 set of data. It is a basic chart and I have removed the horizontal lines in the chart but I am receiving horizontal lines in black. There appears to be a line dropped every 5 increments. Can anyone explain why I am receiving horizontal lines and 1 dropping every 5? I would like to remove the lines altogether. Please see the see screenshot for the example and the JSON. Thank you for your help.