I have created custom directive to get high chart data . pen is here But there are
$scope.chartData = {
title: {
text: 'Sales Statics'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
series: [{
data: [35, 21, 112.2, 10.1, 230.2, 174.0, 198.2, 139.4, 232, 23, 62, 234]
}]
};
code in controller . I want to put all this thing in directive and put 1 json object (Category : data key value) sample like Fiddle
Please find this snippet hope it helps