generate_parallel_chart
Create parallel coordinates charts to visualize and compare multi-dimensional data across various attributes, such as product features or performance metrics. Customize dimensions, themes, and output formats for in-depth analysis.
Instructions
Generate a parallel coordinates chart to display multi-dimensional data, such as, comparing different products across multiple attributes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Data for parallel chart, such as, [{ name: 'Product A', values: [4.2, 3.4, 2.3, 1.8] }]. | |
dimensions | Yes | Names of the dimensions/axes, such as, ['Price', 'Quality', 'Service', 'Value']. | |
height | No | Set the height of the chart, default is 600px. | |
outputType | No | The output type of the diagram. Can be 'png', 'svg' or 'option'. Default is 'png', 'png' will return the rendered PNG image, 'svg' will return the rendered SVG string, and 'option' will return the valid ECharts option. | png |
theme | No | Set the theme for the chart, optional, default is 'default'. | default |
title | No | Set the title of the chart. | |
width | No | Set the width of the chart, default is 800px. |