get_example
Retrieve Vega-Lite visualization examples by category to help developers create charts using pre-built specifications for bar, line, scatter, area, histogram, heatmap, and interactive visualizations.
Instructions
Retrieve Vega-Lite example specifications by category or type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Example category (e.g., 'bar', 'line', 'scatter', 'area', 'histogram', 'heatmap', 'interactive') | |
search | No | Optional search term to filter examples within the category |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Example category (e.g., 'bar', 'line', 'scatter', 'area', 'histogram', 'heatmap', 'interactive')",
"type": "string"
},
"search": {
"description": "Optional search term to filter examples within the category",
"type": "string"
}
},
"required": [
"category"
],
"type": "object"
}