LogoLogo
  • Getting Started
    • Overview
    • Download components
    • Installing Components
    • Using a component
    • lowcodera App Tokens
  • UI Components
    • lowcodera UI Assets
    • Button
    • Card
    • Date time picker
    • Dropdown Menu
    • Horizontal Navbar
    • Icon
    • PowerGrid
    • Progress Bar
    • TextBox
    • Vertical Navbar
  • Visualization Components
  • Area Chart
  • Bar Chart
  • Column Chart
  • Donut Chart
  • Heatmap Chart
  • Kanban Board
  • Swimlane
  • Line Chart
  • Mixed Chart
  • Pie Chart
  • Polar Chart
  • Radar Chart
  • Radial Chart
  • Strategic Roadmap
  • Scatter Chart
  • Timeline Chart
  • Properties Reference
    • UI Component Properties
    • Chart Component Properties
    • Navbar Schema
  • Page 1
Powered by GitBook
On this page
  • Purpose
  • Variations
  • Working with Data
  • Chart Properties
  • Examples
  • Gradient Radial Chart
  • Multiple Radial Bars
  • Semi Circular Gauge

Was this helpful?

Radial Chart

lowcodera Radial Chart Component

PreviousRadar ChartNextStrategic Roadmap

Last updated 1 year ago

Was this helpful?

Purpose

A Radial/Circular Bar Chart simply refers to a typical Bar Chart displayed on a polar coordinate system, instead of a cartesian system.It is used to show comparisons among categories by using a circular shape.

Variations

There are several variations of Radial charts which are supported through the configuration of data and component properties.

  • Basic Radial Chart

  • Multiple Radial Bars

  • Gradient Radial Chart

  • Semi Circular Gauge

Working with Data

‌The data format for the basic radial chart is the same as for other Lowcodera charts. You can bind your chart component's items property to a Power Apps collection which includes either static data or dynamic data e.g. SharePoint.

In this example, a collection with static data called BasicRadial is defined in the Power App. The items property of the radial chart component is then bound to this collection.

Table(
    {
        name: "Percentage",
        data: 70
    }
)

The above code snippet will generate the following radial chart.

Chart Properties

The properties below are the main ones which change this components appearance and behaviours.

Property

Description

Accepted Values

Required

StartAngle

Property to set a custom angle from which radial chart should start.

Numeric

X

EndAngle

Property to set a custom angle from which radial chart should end.

Numeric

X

TotalLabel

Property to show total label in the center

String

X

TotalValue

Property to show any value of the total in the center.

Numeric

X

Examples

Gradient Radial Chart

Multiple Radial Bars

A single or multiple data series is defined in the collection.

ClearCollect(
    MultipleRadial,
    {
        name: "Veg",
        data: 44
    },
    {
        name: "Fruite",
        data: 55
    },
    {
        name: "Beans",
        data: 67
    },
    {
        name: "Spices",
        data: 83
    }
);

Semi Circular Gauge

  • ShowDataLabel property is set to true

  • StartAngle property is to set as -90

  • EndAngle property is to set as 90

  • All other control properties can be left as default

For a full listing of all chart properties see the

A single or multiple data series is defined in the collection. You can use the same collection used in the .

A single or multiple data series is defined in the collection. You can use the same collection used in the .

chart components property reference
section
section
Radial Chart
Semi Circular Gauge