中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在 Angular 中使用Chart.js 和 ng2-charts的示例代碼

發布時間:2020-10-01 11:55:19 來源:腳本之家 閱讀:188 作者:mntx 欄目:web開發

Chart.js是一個流行的JavaScript圖表庫,ng2圖表是Angular 2+的包裝器,可以輕松地將Chart.js集成到Angular中。 我們來看看基本用法。

安裝

首先,在項目中安裝 Chart.js 和 ng2-charts:

# Yarn:
$ yarn add ng2-charts chart.js

# or npm 
$ npm install ng2-charts charts.js --save

當然 ,如果你是使用Angular CLI構建的項目,你也可以很容易的添加Chart.js 添加.angular-cli.json配置文件中,以便將它與應用綁定在一直:

//: .angular-cli.json (partial)
"script": [
 "../node_modules/chart.js/dist/Chart.min.js"
]

現在,你需要在你的 app 模塊或功能模塊導入 ng2-charts 的ChartsModule:

//: app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { ChartsModule } from '@angular/charts';

import { AppComponent } from './app.component';

@NgModule({
 declarations: [ AppComponent ],
 imports: [
  BrowserModule,
  ChartsModule
 ],
 providers: [],
 bootstrap: [ AppComponent ]
})
export class AppModule {}

使用

ng2-charts 給我們提供了一個可以應用于HTML canvas元素的baseChart指令。 以下是一個示例,其中顯示了一些用于輸入的選項以及該指令輸出的chartClick事件:

//: app.component.html

<div >
 <canvas
   baseChart
   [chartType]="'line'"
   [datasets]="chartData"
   [labels]="chartLabels"
   [options]="chartOptions"
   [legend]="true"
   (chartClick)="onChartClick($event)">
 </canvas>
</div>

這就是組件類現在的樣子:

//: app.component.ts

import { Component } from '@angular/core';

@Component({ ... })
export class AppComponent {
 chartOptions = {
  responsive: true
 };

 chartData = [
  { data: [330, 600, 260, 700], label: 'Account A' },
  { data: [120, 455, 100, 340], label: 'Account B' },
  { data: [45, 67, 800, 500], label: 'Account C' }
 ];

 chartLabels = ['January', 'February', 'Mars', 'April'];

 onChartClick(event) {
  console.log(event);
 }
}

選項

以下就是不同的可選輸入項:

chartType

設置圖表的基本類型, 值可以是pipe,doughnut,bar,line,polarArea,radar或horizontalBar。

legend

一個布爾值,用于是否在圖表上方顯示圖例。

datasets

包含數據數組和每個數據集標簽的對象數組。

data

如果你的圖表很簡單,只有一個數據集,你可以使用data而不是datasets。

labels

x軸的標簽集合

options

包含圖表選項的對象。 有關可用選項的詳細信息,請參閱官方Chart.js文檔。

在上面的例子中,我們將圖表設置為自適應模式,根據視口大小進行自動調整。

colors

在上面的例子中未顯示,但你可以定義自己的顏色, 傳入包含以下值的對象文字數組:

myColors = [
 {
  backgroundColor: 'rgba(103, 58, 183, .1)',
  borderColor: 'rgb(103, 58, 183)',
  pointBackgroundColor: 'rgb(103, 58, 183)',
  pointBorderColor: '#fff',
  pointHoverBackgroundColor: '#fff',
  pointHoverBorderColor: 'rgba(103, 58, 183, .8)'
 },
 // ...colors for additional data sets
];

使用自定義顏色時,必須為每個數據集提供一個顏色對象字面量。

事件

發出兩個事件,chartClick和chartHover,它們允許對與圖表交互的用戶做出反應。 當前活動點和標簽作為發射事件數據的一部分返回。

動態更新數據集

當然,Chart.js的優點在于,您的圖表可以輕松地通過動態更新/響應從后端或用戶輸入的數據。

下面這個示例中,我們為5月份添加了一個新的數據集合:

//: app.component.ts(partial)

newDataPoint(dataArr = [100, 100, 100], label) {

 this.chartData.forEach((dataset, index) => {
  this.chartData[index] = Object.assign({}, this.chartData[index], {
   data: [...this.chartData[index].data, dataArr[index]]
  });
 });

 this.chartLabels = [...this.chartLabels, label];

}

它可以像這樣使用:

//: app.component.html(partial)

<button (click)="newDataPoint([900, 50, 300], 'May')">
 Add data point
</button>

你可能注意到了,我們不會對圖表的數據集進行改動,而是使用新數據返回包含先前數據的新對象。 Object.assign可以很容易地做到這一點。

在這個特定的例子中,如果沒有提供參數時,我們為3個數據集設定了默認值為100。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

夹江县| 哈巴河县| 左云县| 无为县| 甘德县| 阿拉善盟| 新密市| 拉萨市| 大港区| 霍林郭勒市| 蛟河市| 东港市| 滦南县| 长阳| 陆河县| 沙雅县| 三台县| 东山县| 历史| 巫溪县| 浦城县| 九寨沟县| 陵川县| 理塘县| 绥滨县| 高唐县| 贵阳市| 买车| 延寿县| 菏泽市| 金沙县| 塔城市| 孝义市| 高淳县| 龙泉市| 崇义县| 溆浦县| 将乐县| 峡江县| 通辽市| 武清区|