Serialize a chart to a JSON string suitable for chart.json.
chart.json
The RPE chart to serialize.
true = 2-space indented JSON (default); false = compact.
true
false
JSON string.
// Write to diskimport { writeFileSync } from 'fs';writeFileSync('chart.json', serializeChart(chart));// Compact form for storageconst compact = serializeChart(chart, false); Copy
// Write to diskimport { writeFileSync } from 'fs';writeFileSync('chart.json', serializeChart(chart));// Compact form for storageconst compact = serializeChart(chart, false);
Serialize a chart to a JSON string suitable for
chart.json.