Rendering Highcharts using Angular js Directives

后端 未结 3 955
伪装坚强ぢ
伪装坚强ぢ 2020-11-30 20:13

I am new to Angular JS and trying to render my highcharts (Basic Line) by creating a directive. Please tell me the approach I should follow here. Any help would be appreciat

3条回答
  •  旧巷少年郎
    2020-11-30 21:00

    Alternative implementation here: http://jsfiddle.net/pablojim/Cp73s/

    This uses https://github.com/pablojim/highcharts-ng

    This allows you to create a highchart with the below html:

    
    

    In the above case chart.series is an array of javascript objects representing the series on the chart - these take standard Highcharts options. These are then watched by angularjs for any changes.

    chart.options is the highcharts initalisation options - also watched for changes. Although changes to this recreate the entire chart.

    chart.title is the highcharts title object - also watched for changes.

提交回复
热议问题