Add data point to Radar chart
Function: Add data point to Radar chart
This action allows you to dynamically add new data points to a "Radar chart UI element" on your application screen. This is useful for updating charts in real-time, adding new data series, or building interactive dashboards without writing any code.
Input
- Radar chart UI element
- Type: UI element (specifically a Radar Chart)
- Description: Select the specific Radar chart on your page where you want to add data. This is a required input.
- Code
- Type: A piece of text
- Description: Provide a unique identifier (a "Code") for the dataset within your chosen Radar chart. If a dataset with this code already exists, the new data point will be added to it. If not, a new dataset will be created using this code. This is a required input.
- Point
- Type: A piece of text
- Description: Enter the actual data value you wish to add. This value will be appended to the dataset identified by the "Code". This is a required input.
Output
This action does not produce any direct output that can be used by subsequent actions. Its effect is to modify the specified "Radar chart UI element" directly on your screen.
Execution Flow
Real-Life Examples
Example 1: Updating a Product's Performance Score
Imagine you have a Radar chart displaying the performance of different products across various attributes (e.g., Speed, Reliability, Cost). You want to update the "Speed" score for "Product A".
- Inputs:
- Radar chart UI element:
ProductPerformanceChart
(the specific chart on your page) - Code:
Product A
(identifies the dataset for Product A) - Point:
85
(the new speed score)
- Radar chart UI element:
- Result: The "Product A" dataset on the
ProductPerformanceChart
will have85
added to its list of points, visually updating its "Speed" axis.