Edit: I am using v2 of JavaScript Stock Chart
I have got another question concerning amCharts. I am trying to consolidate all my data into one balloon. I am aware of this guide:
http://www.amcharts.com/tutorials/showing-only-one-balloon-for-all-graphs/
... but it did not work for me. It seems my code only allows one HTML <br>
As soon as I put more of them into my code like so:
graph.balloonText = “graph1:[[value1]]<br>graph2:[[value2]]<br>graph3:[[value3]]”;
it looks like this: IMAGE HERE
This is not what I obviously want. My final goal is to have ONE balloon only.
graph = new AmCharts.AmGraph();
graph.valueAxis = valueAxis3;
graph.balloonText = "graph1:[[pages]]<br>graph2:[[ctr]]<br>graph3:[[impressions]]";
//graph.balloonText = "Click Through Rate: [[ctr]]%";
graph.title = "CTR";
graph.valueField = "ctr";
graph.type = "line";
graph.lineAlpha = 1;
graph.lineThickness = 2;
graph.lineColor = "#fabf3a";
graph.fillAlphas = 0;
graph.hidden = false;
chart.addGraph(graph);
Please help me
<br>
. The line-wrapping algorithm might think this is one long string. – martynasma