Angular Google Charts Tutorial
Angular Google Charts Resources
Selected Reading
- TreeMap Chart
- Table Chart
- Stepped Area
- Scatter Chart
- Sankey Charts
- Pie Charts
- Organization
- Maps
- Line Charts
- Histogram
- Combination
- Column Charts
- Candlestick
- Bubble Charts
- Bar Charts
- Area Charts
- Configuration Syntax
- Environment Setup
- Overview
- Home
Angular Google Charts Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Scatter Chart
Angular Google Charts - Scatter Chart
Following is an example of a Scatter Chart.
We have already seen the configurations used to draw a chart in
chapter. Now, let us see an example of a Scatter Chart.Configurations
We ve used ScatterChart class to show a Scatter chart.
type = ScatterChart ;
Example
app.component.ts
import { Component } from @angular/core ; @Component({ selector: app-root , templateUrl: ./app.component.html , styleUrls: [ ./app.component.css ] }) export class AppComponent { title = Age vs Weight ; type= ScatterChart ; data = [ [8,12], [4, 5.5], [11,14], [4,5], [3,3.5], [6.5,7] ]; columnNames = [ Age , Weight ]; options = { }; width = 550; height = 400; }
Result
Verify the result.
Advertisements