Skip to main content
Extract detailed numerical data from complex visualizations including line graphs, bar charts, combination charts, and scatter plots. Advanced chart extraction uses agentic figure parsing to deliver precise data point extraction.

When to use

  • Financial analysis requiring exact data points from charts
  • Research workflows needing granular numerical data from graphs
  • Data recovery from visualizations in reports and presentations
  • Complex charts with multiple series or dense data points

Supported chart types

  • Line graphs
  • Bar charts
  • Area graphs
  • Combination charts
  • Scatter plots

How-to: enable advanced chart extraction

Enable advanced chart extraction through the enhance.agentic configuration with the figure scope and advanced_chart_extraction enabled.

Configuration

{
  "enhance": {
    "agentic": [
      {
        "scope": "figure",
        "advanced_chart_extraction": true
      }
    ]
  }
}

Output

When advanced chart extraction is enabled, chart figures return structured tabular data with extracted values. Legend data is also included. By default, only data at each visual point is returned. However if you would like the full pixel-level data at a very granular, contact the team.
// Block output example
{
	"type":"Figure",
	"bbox":{
		"left":0.0009262263774871826,
		"top":0.0049936771392822266,
		.
    .
	},
	"content":"**Chart IV.2: Banks' Liquidity Demand and SDF Holding**\n\n\n**Legend**\n- **Total Injection through Repos and MSF** — color: green; symbol: area\n- **SDF holding** — color: red; symbol: solid line\n\n| Date | Total Injection through Repos and MSF (₹ lakh crore) | SDF holding (₹ lakh crore) |\n|---|---|---|\n| 1-Apr-24 | 0.4 | 1.6 |\n| 8-Apr-24 | 1.0 | 0.8 |\n| 15-Apr-24 | 1.8 | 1.1 |\n| 22-Apr-24 | 2.0 | 0.5 |\n| 29-Apr-24 | 2.4 | 0.6 |\n| 6-May-24 | 1.5 | 0.9 |\n| 13-May-24 | 3.2 | 0.8 |\n| 20-May-24 | 2.6 | 0.4 |\n|.......",
	"image_url": null,
  .
  .
  .
}
The extracted data includes column headers mapped from axis labels and legends, with row data containing the precise numerical values from the chart.

Credit usage

Pages containing advanced chart extraction require agentic figure parsing and consume 4 credits per chart. See Credit Usage and Rates for complete pricing details.