This demo uses imperative chart updates. The generated code is a faithful Angular translation: open it in CodeSandbox to run and tweak.
import { Component, AfterViewInit, OnDestroy, ViewChild } from '@angular/core';
import {
ChartComponent,
ApexAxisChartSeries,
ApexNonAxisChartSeries,
ApexChart,
ApexXAxis,
ApexYAxis,
ApexTitleSubtitle,
ApexDataLabels,
ApexStroke,
ApexFill,
ApexLegend,
ApexTooltip,
ApexMarkers,
ApexPlotOptions,
ApexResponsive,
ApexGrid,
ApexAnnotations,
ApexStates,
ApexTheme,
NgApexchartsModule,
} from 'ng-apexcharts';
export type ChartOptions = {
series?: ApexAxisChartSeries | ApexNonAxisChartSeries;
chart?: ApexChart;
xaxis?: ApexXAxis;
yaxis?: ApexYAxis | ApexYAxis[];
title?: ApexTitleSubtitle;
subtitle?: ApexTitleSubtitle;
dataLabels?: ApexDataLabels;
stroke?: ApexStroke;
fill?: ApexFill;
legend?: ApexLegend;
tooltip?: ApexTooltip;
markers?: ApexMarkers;
plotOptions?: ApexPlotOptions;
responsive?: ApexResponsive[];
grid?: ApexGrid;
annotations?: ApexAnnotations;
states?: ApexStates;
theme?: ApexTheme;
colors?: string[];
labels?: any;
};
@Component({
selector: 'app-chart',
standalone: true,
imports: [NgApexchartsModule],
templateUrl: './chart.component.html',
})
export class AppChart implements AfterViewInit, OnDestroy {
@ViewChild('chart') chart!: ChartComponent;
public chartOptions: Partial<ChartOptions> = {
series: [
{
name: 'Jan',
data: generateData(20, {
min: -30,
max: 55,
}),
},
{
name: 'Feb',
data: generateData(20, {
min: -30,
max: 55,
}),
},
{
name: 'Mar',
data: generateData(20, {
min: -30,
max: 55,
}),
},
{
name: 'Apr',
data: generateData(20, {
min: -30,
max: 55,
}),
},
{
name: 'May',
data: generateData(20, {
min: -30,
max: 55,
}),
},
{
name: 'Jun',
data: generateData(20, {
min: -30,
max: 55,
}),
},
{
name: 'Jul',
data: generateData(20, {
min: -30,
max: 55,
}),
},
{
name: 'Aug',
data: generateData(20, {
min: -30,
max: 55,
}),
},
{
name: 'Sep',
data: generateData(20, {
min: -30,
max: 55,
}),
},
],
chart: {
height: 350,
type: 'heatmap',
},
plotOptions: {
heatmap: {
shadeIntensity: 0.5,
radius: 0,
useFillColorAsStroke: true,
colorScale: {
ranges: [
{
from: -30,
to: 5,
name: 'Freezing',
color: '#2E5CB8',
},
{
from: 6,
to: 20,
name: 'Cold',
color: '#4FC3F7',
},
{
from: 21,
to: 45,
name: 'Mild',
color: '#FFB200',
},
{
from: 46,
to: 55,
name: 'Hot',
color: '#E53935',
},
],
// Render the discrete ranges as a smooth gradient strip instead of the
// categorical legend. Hovering a band highlights the cells in that range
// and dims the rest; hovering a cell slides the arrow to its value.
gradientLegend: {
enabled: true,
width: '80%',
thickness: 10,
showHoverValue: true,
},
},
},
},
dataLabels: {
enabled: false,
},
stroke: {
width: 1,
},
title: {
text: 'Daily Temperature by Month (°C)',
},
legend: {
position: 'top',
},
};
ngAfterViewInit() {
(window as any).ApexCharts.setLicense('APEX-eyJleHBpcnlEYXRlIjoiMjEyNi0wNy0wNCIsImlzc3VlRGF0ZSI6IjIwMjYtMDctMjgiLCJwbGFuIjoicHJlbWl1bSIsImRvbWFpbnMiOlsiYXBleGNoYXJ0cy5jb20iLCIxMjcuMC4wLjEiLCJsb2NhbGhvc3QiXSwic2lnIjoieVBmb1VCc0Z3TU9ZdUEyaEZkR0I2Y1FtZ0JITUtXcVdJSjB2NVRESXRZbFR3eDJMUmh6R2x0RUc3VXJ4X0s3b25ZMWRZb2Z2VGItN01ydFYyNDVyOWcifQ==');
}
ngOnDestroy() {
// no cleanup needed
}
}