DMR

Members
  • Content count

    13
  • Joined

  • Last visited

About DMR

  • Rank
    Junior Member
  1. I am creating a gauge chart to show spending as a percentage of budget. At the amount spent I am placing a trend point which displays the spending percentage of the budget. Sometimes, the spending is so close to the budget that the trend line is so close to the right of the chart that the trend point display value does not show up. How can I make sure the trend point display value always appears even if the trend point is nearly all the way to the right border of the chart? See attached for an illustration of the problem. (Note: I added in code that when the trend point (based on the percentage) is beyond 100%, it displays at 100% even though the display value is greater than 100%)
  2. I have a few gauge charts stacked one on top of the other. Each gauge chart has 2 trendpoints: one a solid line with a percentage label, and one a dotted line without a label. When I just have the solid line trendpoint there, the labels show up in the right place (right above the trend point). However, when I put the second, dotted trend line in, the label for the solid trend point in every other chart goes all the way to the left. See attached images. What can I do to fix this?
  3. Is there a way to hide the display value for a trend point on a horizontal linear gauge chart?
  4. In my 3d column chart, I am rotating the value labels and placing them inside the column. When the column is too short to have the value label inside, it is placed outside the column. Is there any way to style specifically those value labels that are outside the column?
  5. (I didn't include the image last time)
  6. (Not sure if the image loaded last time)
  7. The anchors of the two series are very close in some places, and the labels are overlapping. Is there any way to fix that?
  8. I can't seem to get a canvas shadow on my muti-series spline chart. What am I doing wrong? Here is my code: chart: { bgcolor: "ffffff", bgAlpha: "0", valuePadding: "5", canvasBgColor: "f4f3f3,d9d9d9", canvasBorderColor: "ffffff", canvasBgAngle: "120", showAlternateHGridColor: "0", canvasBgRatio: "50,50", canvasBorderAlpha: "0", divLineColor: "6E6E6E" }, styles: { definition: [{ name: "canvasShadow", type: "shadow", angle: "180", color: "ffffff", distance: "10", alpha: "70" }], application: [{ toobject: "canvas", styles: "canvasShadow" }] },
  9. Is there a way to have fusionCharts automatically calculate spaces so that the data value label never overlaps with the data plot?
  10. I am trying to create a spline chart that has the Y values configured automatically. However, the top of the "spline" is cut off. (see attached) How do I fix this?
  11. I am trying to change the gradient ratio on the plot fill area of the area chart. I tried putting plotFillRatio: "10,90" in first the properties of the chart element and then the properties of the individual series, and neither changed the ratio of the gradient. What am I doing wrong?
  12. Is there a way for fusion charts to automatically calculate the number of vertical div lines for a 2d line graph?