XY chart line with different colors
-
Hi all,
I’m stuck with this problem: i’m not able to create a line with different colors. I’ve seen the example line with changing colors and i’ve tryed to apply it to a simple example, but it’ll show only one random color (pink like color). Here is the code:var %CHART% = AmCharts.makeChart("%CHART%", { "type": "xy", "pathToImages": "https://cdn.amcharts.com/lib/3/images/", "startDuration": 1.5, "decimalSeparator": ",", "theme": "dark", "thousandsSeparator": ".", "chartCursor": { "valueBalloonsEnabled": false, "valueLineAlpha": 0.78 }, "trendLines": [], "graphs": [ { "balloonText": "distance:<b>xkm</b><br/>elevation:<b>ym</b>", "bullet": "round", "bulletAlpha": 0, "id": "AmGraph-1", "xAxis": "Asse-x-distanza", "xField": "x", "yAxis": "Asse-y-altezza", "yField": "y", "lineColorField": "lineColor", "fillAlphas": 0.3, "fillColorsField": "lineColor", "fillToAxis": "Asse-x-distanza", "title": "Elevation" } ], "guides": [], "valueAxes": [ { "id": "Asse-y-altezza", "axisAlpha": 0, "title": "Elevation [m]" }, { "id": "Asse-x-distanza", "position": "bottom", "axisAlpha": 0, "title": "Distance [km]" } ], "allLabels": [], "balloon": {}, "titles": [], "dataProvider": [ {"lineColor":"#b7e021",x:1,y:1}, {x:2,y:4}, {x:3,y:5}, {"lineColor":"#ff0000",x:4,y:1}, {x:5,y:10}, {x:6,y:7}, {x:7,y:8}, {"lineColor":"#b7e021",x:8,y:12}, {x:9,y:9}, {x:10,y:7} ] });
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘XY chart line with different colors’ is closed to new replies.