Chart example - MythX/ember-d3-component GitHub Wiki
{
title: 'Chart title',
yAxis: [{
name: 'y1',
color: 'orange',
legend: '',
position: 'left'
}],
xAxis: {
formatXAxis: 'date',
legend: '',
origin: true
},
charts:[{
type: 'line',
yAxis: 'y1',
color: 'orange',
tooltip: true,
data: [{
keyD: '',
valD: ''
}]
}]
}