Is there a way to get a great amount at the end of a column of values ββin my legend? Here is the code for my legend right here, as well as the fiddle in which it is split into two columns for the name and value of the dataset [].
legend: { enabled: true, layout: 'vertical', align: 'right', width: 220, verticalAlign: 'top', borderWidth: 0, useHTML: true, labelFormatter: function() { return '<div style="width:200px"><span style="float:left">' + this.name + '</span><span style="float:right">' + this.y + '%</span></div>'; }, title: { text: 'Primary', style: { fontWeight: 'bold' } } }
id as a column to be something like this
Data1 2 Data2 3 Data3 2 --- 7
What I need to do is add a dashed or preferred solid line below this line and then the total amount of all data values. Here is my real violin.
http://jsfiddle.net/hAnCr/29/
Thank you!
source share