i'm trying to build an kpi's app and i'm using angular js i want to create a list of charts , each list item shows different values and each list item chart has different type according to my Model.
i'm based on highcharts-ng directive.
i want to inject through highchart directive some attrs like value, title name and chart type that when i will type the following ng-repeat it will create my list of charts due to attrs
<li ng-repeat="li in list">
<highchart config="chart" chartTitle="{{li.name}}" kpiValue="{{li.data}}">
</highchart>
</li>
you can find my code here http://jsfiddle.net/Cp73s/62/
link to highcharts-ng : https://github.com/pablojim/highcharts-ng