Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions docs/components/charts/native-gauge-chart.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Native gauge chart

**Native gauge charts** are lightweight data visualization elements that represent one or more values as a position on a radial arc scale. Unlike the [ECharts-based gauge chart](gauge-chart.md), they require no third-party charting library, making them ideal for performance-sensitive or bundle-size-constrained applications.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since this is a technical detail and nothing relevant for UX, wouldn't it make more sense to integrate this into the existing gauge chart chapter?

@akashsonune akashsonune Aug 21, 2026

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think there are some feature differences between the two, for which we might need some Ux writing @panch1739?
But yes, from user point of view, I think it makes sense to keep both variants under one chapter.

@dr-itz @panch1739 Since you have more insights into this, WDYT?


## Usage ---

T.B.D

## Design ---

T.B.D

## Code ---

### Usage

```ts
import { SiNChartGaugeComponent } from '@siemens/native-charts-ng/gauge';

@Component({
imports: [SiNChartGaugeComponent, ...]
})
```

### Sum mode

Multiple series arcs are stacked on the gauge ring. The center shows their combined total.

<si-docs-component example="si-ncharts/si-nchart-gauge" height="400"></si-docs-component>

### Single mode

A single arc covers the ring. Colored background segments can be layered beneath the arc to indicate qualitative ranges.

<si-docs-component example="si-ncharts/si-nchart-gauge-single" height="400"></si-docs-component>

<si-docs-api component="SiNChartGaugeComponent" package="@siemens/native-charts-ng" hideImplicitlyPublic="true"></si-docs-api>

<si-docs-types></si-docs-types>
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ nav:
- Scatter chart: 'components/charts/scatter-chart.md'
- Generic chart: 'components/charts/generic-chart.md'
- Micro charts: 'components/charts/micro-charts.md'
- Native gauge chart: 'components/charts/native-gauge-chart.md'
- Maps: 'components/maps/maps.md'
- Pages:
- About: 'components/pages/about.md'
Expand Down
Loading