Rendering Highcharts using Angular js Directives

后端 未结 3 958
伪装坚强ぢ
伪装坚强ぢ 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 20:47

    app.directive('hcChart', function () {
    	return {
    			restrict: 'A',
    			template: '
    ', scope: { options: '=' }, link: function (scope , element, attribute) { Highcharts.chart('chart', { chartOptions: { type: 'line' }, title: { text: 'Temperature data' }, series: [{ data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4] }] }); } } });
    Placeholder for generic chart
    Make sure highchart lib is added in your index.html

提交回复
热议问题