1. Recovering Line Chart Data
Data AnalystBackground
A data analyst has an SVG file of a monthly revenue trend chart but needs the raw numbers to build a new report.
Problem
Extracting exact Y-axis values from a static SVG polyline.
How to use
Paste the SVG code, select 'Line / Polyline', and set the Y-axis min to 0 and max to 80 based on the chart's visual labels.
{
"chartType": "line",
"xAxisMin": 0,
"xAxisMax": 12,
"yAxisMin": 0,
"yAxisMax": 80
}Outcome
The tool maps the polyline points to the 0-80 scale and outputs a JSON array of the 12 monthly revenue figures.