If I set the total values to name attribute like this: "name": "Germany: 1234"
it also shows up on the line like this:
I want total value to only show up on the legend:
This is the structure of data:
export var lineChartMulti = [
{
"name": "Germany",
"series": [
{
"name": "2010",
"value": 700
},
{
"name": "2011",
"value": 750
},
...
]
},
{
"name": "USA",
"series": [
{
"name": "2010",
"value": 650
},
...