Ask AI
Skip to main content

Add data set to Radar chart

Function: Add data set to Radar chart

This action allows you to dynamically add a complete set of data to an existing Radar chart on your application page. This is useful for visualizing new information, comparing different categories, or updating charts based on user interactions or data changes, making your data visualizations more interactive and informative.

Input

  • Radar chart UI element: The specific Radar chart component on your page where you want to add this new data set. You select this directly from your application's UI elements.
  • Code: A unique identifier (like a short name or ID) for this new data set. This helps you refer to it later if needed.
  • Name: The display name for this data set that will appear on the Radar chart, for example, in the legend.
  • Color: The color you want to use to represent this data set on the chart. This is typically a hexadecimal color code (e.g., #FF0000 for red).
  • Points: The actual data values that make up this data set. These are usually provided as a comma-separated list of numbers (e.g., 80, 90, 75, 85, 95), where each number corresponds to a specific axis on the Radar chart.

Output

This action does not produce a direct output value. Instead, it modifies the specified Radar chart UI element by adding the new data set to it, making the changes visible on your application page.

Execution Flow

Real-Life Examples

Example 1: Comparing Quarterly Sales Performance

Imagine you have a Radar chart showing the performance of different sales regions across various metrics (e.g., Lead Generation, Conversion Rate, Customer Satisfaction). You want to add the data for the latest quarter.

  • Inputs:
    • Radar chart UI element: "Regional Sales Performance Chart"
    • Code: "Q3_2023_SALES"
    • Name: "Q3 2023 Sales"
    • Color: "#4CAF50" (Green)
    • Points: "85, 78, 92, 88, 95" (representing scores for each metric)
  • Result: The "Regional Sales Performance Chart" is updated to include a new green data set labeled "Q3 2023 Sales," visually comparing its performance against previous quarters or other regions.

Example 2: Tracking Project Team Skills

You have a Radar chart that visualizes the skill levels (e.g., Communication, Technical, Problem-Solving, Leadership) of different project teams. A new team has just been formed, and you want to add their initial skill assessment.

  • Inputs:
    • Radar chart UI element: "Project Team Skills Chart"
    • Code: "TEAM_PHOENIX_SKILLS"
    • Name: "Team Phoenix"
    • Color: "#2196F3" (Blue)
    • Points: "7, 8, 6, 9"
  • Result: The "Project Team Skills Chart" now displays a new blue data set for "Team Phoenix," allowing managers to quickly see their strengths and areas for development.

Example 3: Product Feature Comparison for a New Release

Your application features a Radar chart comparing different product versions based on features like "Ease of Use," "Performance," "Security," and "Cost-Effectiveness." A new product version is about to be released, and you want to add its feature scores to the chart.

  • Inputs:
    • Radar chart UI element: "Product Feature Comparison Chart"
    • Code: "PRODUCT_V3_0"
    • Name: "Product Version 3.0"
    • Color: "#FFC107" (Amber)
    • Points: "90, 85, 95, 70"
  • Result: The "Product Feature Comparison Chart" is updated to include an amber data set for "Product Version 3.0," making it easy for users to compare its features against older versions.