Ask AI
Skip to main content

Add data point to Radar chart

Function: Add data point to Radar chart

This function allows you to dynamically update a "Radar chart UI element" on your application page by adding new data points. It's perfect for visualizing changes over time or adding new metrics without needing to manually reconfigure the entire chart. You can either add data to an existing series (dataset) or create a brand new one if it doesn't already exist.

Input

  • Radar chart UI element (PART): The specific Radar chart component on your page where you want to add data. You'll select this directly from your application's UI.
  • Code (STRING): A unique identifier or name for the data series (dataset) within your chosen Radar chart. For example, "Q1 Sales" or "Customer Satisfaction". If a dataset with this code doesn't exist, the system will automatically create a new one for you.
  • Point (STRING): The actual data value you wish to add to the specified dataset. This could be a number representing a score, a percentage, or any other relevant metric.

Output

This function does not produce a direct output value. Instead, its action is to update the specified "Radar chart UI element" on your page, immediately reflecting the newly added data point.

Execution Flow

Real-Life Examples

Here are some practical ways you can use the "Add data point to Radar chart" function:

Example 1: Tracking Monthly Sales Performance

Imagine you have a Radar chart displaying sales performance across different product categories (e.g., "Electronics", "Apparel", "Home Goods"). You want to add the sales score for the current month.

  • Inputs:
    • Radar chart UI element: My Sales Performance Chart (selected from your page)
    • Code: "Monthly Sales"
    • Point: "85" (representing an 85% performance score)
  • Result: The "My Sales Performance Chart" will update. If a dataset named "Monthly Sales" already exists, the value "85" will be added to it. If not, a new dataset called "Monthly Sales" will be created with "85" as its first data point.

Example 2: Monitoring Project Team Skills

You have a Radar chart visualizing the skill levels of a project team (e.g., "Coding", "Design", "Testing", "Communication"). A new team member joins, and you want to add their "Communication" skill score.

  • Inputs:
    • Radar chart UI element: Project Team Skills Chart
    • Code: "Team A Skills"
    • Point: "7.5" (representing a 7.5/10 communication skill score)
  • Result: The "Project Team Skills Chart" will update. The value "7.5" will be added to the "Team A Skills" dataset, reflecting the new team member's communication proficiency.

Example 3: Dynamic Customer Feedback Analysis

You're collecting customer feedback on a new product, and you want to see how satisfaction scores evolve daily on a Radar chart.

  • Inputs:
    • Radar chart UI element: Product X Feedback Chart
    • Code: "Daily Satisfaction"
    • Point: "4.2" (representing an average satisfaction score of 4.2 out of 5 for today)
  • Result: The "Product X Feedback Chart" will update. The value "4.2" will be added to the "Daily Satisfaction" dataset. Each day, you can run this action to add the latest score, building a trend line on your chart.