博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
angular2-highcharts用法详解
阅读量:5764 次
发布时间:2019-06-18

本文共 1314 字,大约阅读时间需要 4 分钟。

1、 使用npm安装angular2-highcharts

npm install angular2-highcharts --save

2、主模块中引入 app.module.ts

import {ChartModule} from "angular2-highcharts";...imports: [    ChartModule]...

3、组件中定义图标配置数据,可在highcharts官网查看配置 app.component.ts

import {Component} from '@angular/core';@Component({  selector: 'app-root',  templateUrl: './app.component.html'})export class AppComponent {  options:Object;  constructor() {    this.options = {      chart: {        plotBackgroundColor: null,        plotBorderWidth: null,        plotShadow: false,        type: 'pie'      },      title: {        text: 'Browser market shares at a specific website, 2014'      },      tooltip: {        pointFormat: '{series.name}: {point.percentage:.1f}%'      },      plotOptions: {        pie: {          allowPointSelect: true,          cursor: 'pointer',          dataLabels: {            enabled: true,            format: '{point.name}: {point.percentage:.1f} %'          }        }      },      series: [{        name: 'Brands',        data: [          { name: 'Microsoft Internet Explorer', y: 56.33 },          { name: 'Chrome', y: 24.03 },          { name: 'Firefox', y: 10.38 },          { name: 'Safari', y: 4.77 },          { name: 'Opera', y: 0.91 },          { name: 'Proprietary or Undetectable', y: 0.2 }        ]      }]    }  }}

4、模板中加载图像

转载地址:http://nxwux.baihongyu.com/

你可能感兴趣的文章
数据结构及算法基础--快速排序(Quick Sort)(二)优化问题
查看>>
你对position的了解到底有多少?
查看>>
随笔2013/2/19
查看>>
Windows Phone的Silverlight Toolkit 安装及其使用
查看>>
DBS:同学录
查看>>
Mysql备份系列(1)--备份方案总结性梳理
查看>>
[CareerCup] 1.6 Rotate Image 翻转图像
查看>>
Python中的画图初体验
查看>>
Java程序员的日常 —— 响应式导航Demo
查看>>
objective-c内存管理基础
查看>>
sap关于价值串的说法(转载)
查看>>
Migration to S/4HANA
查看>>
sed 对目录进行操作
查看>>
什么是代码
查看>>
移动端开发单位——rem,动态使用
查看>>
系列文章目录
查看>>
手把手教你如何提高神经网络的性能
查看>>
前端布局原理涉及到的相关概念总结
查看>>
递归调用 VS 循环调用
查看>>
使用sstream读取字符串中的数字(c++)
查看>>