Skip to content

Heatmap

import { HeatmapChart } from '@arshad-shah/swift-chart';
const chart = new HeatmapChart('#chart', { theme: 'midnight' });
chart.setData(rows, { x: 'hour', y: 'day', valueField: 'visits' });

Custom colour ramp

Pass a two-stop ramp via colorScale. Values interpolate linearly between the stops.

Reference