1.5.1 • Published 2 years ago
@pinpoint-fe/scatter-chart v1.5.1
latest version: v1.5.1
@pinpoint-fe/scatter-chart
🔎 Overview
- An open-source scatter-chart library written in pure JS based on canvas api
- Specifically designed for visualizing request and response patterns over time
- Easy to monitor any unexpected transaction
⚙️ Installation
npm install @pinpoint-fe/scatter-chart
or
yarn add @pinpoint-fe/scatter-chart
🚀 Quick Start
Create your first Scatter Chart
import { ScatterChart } from '@pinpoint-fe/scatter-chart';
const SC = new ScatterChart(
document.getElementById('scatterWrapper'),
{
axis: {
x: {
min: 1669103462000,
max: 1669103509335,
tick: {
format: (value) => `
${String(date.getHours()).padStart(2, '0')}:
${String(date.getMinutes()).padStart(2, '0')}:
${String(date.getSeconds()).padStart(2, '0')}
`;,
}
},
y: {
min: 0,
max: 10000,
tick: {
format: (value) => value.toLocaleString(),
}
}
},
data: [
{
type: 'success',
color: 'rgba(61, 207, 168, 0.5)',
priority: 1,
},
{
type: 'fail',
color: 'rgba(235, 71, 71, 0.5)',
priority: 2,
},
],
legend: {
formatLabel: (label) => label.toUpperCase(),
}
}
);
SC.render(data);
Parameters
Params | Type | Required | Description |
---|---|---|---|
wrapper | HTMLElement | ✔️ | Wrapper element where chart will be rendered |
options | ScatterChartOption | ✔️ | ScatterChart options |
1.6.0-rc.2
2 years ago
1.6.0-rc.1
2 years ago
1.5.1
2 years ago
1.5.0
2 years ago
1.5.0-rc.1
2 years ago
1.5.0-rc.2
2 years ago
1.5.0-rc.3
2 years ago
1.5.0-rc.4
2 years ago
1.2.0
2 years ago
1.3.4
2 years ago
1.3.3
2 years ago
1.4.1
2 years ago
1.3.2
2 years ago
1.4.0
2 years ago
1.3.1
2 years ago
1.3.1-patch
2 years ago
1.3.0
2 years ago
1.2.1
2 years ago
1.3.0-patch
2 years ago
1.2.0-patch
2 years ago
1.4.0-rc
2 years ago
1.2.2-patch
2 years ago
1.2.1-patch
2 years ago
1.4.0-rc3
2 years ago
1.4.0-rc2
2 years ago
1.3.4-patch
2 years ago
1.0.2-patch
2 years ago
1.0.2
2 years ago
1.1.0
2 years ago
1.0.1
2 years ago
1.0.0
2 years ago
1.0.1-patch
2 years ago
1.0.3-patch
2 years ago
0.2.0-alpha
3 years ago
0.1.0-alpha
3 years ago