sl3dg3hamm3r

Members
  • Content count

    4
  • Joined

  • Last visited

About sl3dg3hamm3r

  • Rank
    Forum Newbie
  1. Radar Chart Series Color

    You are right, this did the trick, thx.
  2. Radar Chart Series Color

    Hi Given the Radar Chart, Javascript: I can't succeed to fully change the series colors. I set the 'color' - attribute in dataset, this works fine. But the borders are still the same standard-colors (baby-blue, yellow, ...). So I additionally tried to set 'lineColor', but this doesn't show any effect... or is there an easy way to switch the standard-colors? In the demo-gallery, only the 'color' - attribute is used, which seems to work just fine there... Or is there an easy way to switch the order of the series in the radar-chart? I'd like the baby-blue series over the yellow series. var myChart = new FusionCharts("Radar", "myChartId", "100%", "400"); myChart.setJSONData({ "chart": { animation: 0, bgcolor: "FFFFFF", palette: '1', useEllipsesWhenOverflow: '1', maxLabelWidthPercent: '20', numdivlines: '4', showTooltipforWrappedLabels: '1', showValues: 0, yAxisMaxValue: 100, }, "categories": [ {"category":[{"label":"Value 1"},{"label":"Value 2"},{"label":"Value 3"}]} ], "dataset": [ {"seriesname":"Series 1","data":[{"label":"Value 1","value":"50"},{"label":"Value 2","value":"59.62"},{"label":"Value 3","value":"65.38"}],"color":"AA0000","lineColor":"DD0000"}, {"seriesname":"Series 2","data":[{"label":"Value 1","value":"40"},{"label":"Value 2","value":"67"},{"label":"Value 3","value":"39"},],"color":"00AA00","lineColor":"00DD00"} ], }); myChart.render("chartContainer");
  3. Tooltips Labels Radar Chart

    P.s.: The configuration 'showTooltipforWrappedLabels' is described here: http://docs.fusioncharts.com/powercharts/Contents/ChartSS/Radar.html. But when I searched through the javascript-files for this phrasing, I couldn't find anything...
  4. Tooltips Labels Radar Chart

    Hi Based on http://forum.fusioncharts.com/topic/10145-how-do-i-make-wrap-text-on-radar-chart-in-powercharts/ I tried to achieve tooltips on the labels of a radar chart. I basically took the example from the gallery, added 'showTooltipforWrappedLabels = 1' in the configuration, also addes some breaks in one of the labels, but nothing seems to make the expected behaviour (shorten the label, include tooltip): { "chart": { "caption": "Comparison of Enterprise Level Antivirus Software", "canvasborderalpha": "0", "radarborderalpha": "0", "showlabels": "1", "drawanchors": "0", "ymaxvalue": "10", "showlimits": "0", "showTooltipforWrappedLabels": "1" }, "categories": [ { "category": [ { "label": "Centralized Deployability{br}extra long label extra long label extra long label extra long label " }, { "label": "Centralized Signature Updating" }, { "label": "Active Firewall" }, { "label": "Centralized Access & Firewall" }, { "label": "Centralized Network Health Monitoring" }, { "label": "Cost" }, { "label": "Technical Support" } ] } ], "dataset": [ { "seriesname": "Kaspersky", "color": "146858", "alpha": "30", "data": [ { "value": "8" }, { "value": "9" }, { "value": "9" }, { "value": "8" }, { "value": "7" }, { "value": "9" }, { "value": "8" } ] }, { "seriesname": "Norton", "color": "FFD703", "alpha": "30", "data": [ { "value": "7" }, { "value": "6" }, { "value": "6" }, { "value": "4" }, { "value": "7" }, { "value": "6" }, { "value": "5" } ] } ] } What could I have missed? Or is there any other way to include tooltips on the labels?