Ask AI
Skip to main content

Clear indicators of radarchart

Function: Clear indicators of radarchart

This function helps you reset or clear all the data indicators displayed on a specific Radar Chart in your application. This is useful when you want to remove existing data points from the chart, perhaps before loading new ones or to simply show an empty chart.

Input

  • UI element (PART, required): This is the specific Radar Chart component on your page that you want to clear. You need to select the Radar Chart UI element from your application's design. This action will remove all data indicators currently displayed on this chart.

Output

(No explicit output is returned by this function. It performs an action directly on the UI element.)

Execution Flow

Real-Life Examples

  1. Resetting a chart before new data load

    • Inputs:
      • UI element: MySalesPerformanceRadar
    • Result: The MySalesPerformanceRadar chart on the page will become empty, with all its previous data indicators removed, ready for new sales data to be displayed.
  2. Clearing a chart when a user clicks a "Clear" button

    • Inputs:
      • UI element: CustomerFeedbackRadar
    • Result: When a user clicks a "Clear Chart" button, the CustomerFeedbackRadar chart will instantly clear all its displayed feedback indicators, providing a clean slate.
  3. Initializing a chart to be empty on page load

    • Inputs:
      • UI element: ProjectProgressOverview
    • Result: When the page loads, the ProjectProgressOverview chart will initially appear empty, without any indicators, until specific project data is explicitly loaded into it by another action.