mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
42 lines
923 B
Plaintext
42 lines
923 B
Plaintext
@using Radzen.Blazor.Rendering
|
|
<g class="rz-arc-gauge-scale">
|
|
<GaugeScale
|
|
Radius=@CurrentScaleRadius
|
|
StrokeWidth=@CurrentStrokeWidth
|
|
Stroke=@Stroke
|
|
Center=@CurrentCenter
|
|
StartAngle=@StartAngle
|
|
EndAngle=@EndAngle
|
|
TickPosition=@TickPosition
|
|
ShowFirstTick=@ShowFirstTick
|
|
ShowLastTick=@ShowLastTick
|
|
ShowTickLabels=@ShowTickLabels
|
|
TickLength=@TickLength
|
|
TickLabelOffset=@TickLabelOffset
|
|
Min=@Min
|
|
Max=@Max
|
|
Step=@Step
|
|
MinorStep=@MinorStep
|
|
FormatString=@FormatString
|
|
Formatter=@Formatter
|
|
MinorTickLength=@MinorTickLength
|
|
/>
|
|
<GaugeBand
|
|
From=@Min
|
|
To=@Max
|
|
Fill=@Fill
|
|
Stroke=@Stroke
|
|
StrokeWidth=@CurrentStrokeWidth
|
|
Radius=@CurrentRadius
|
|
Center=@CurrentCenter
|
|
StartAngle=@StartAngle
|
|
EndAngle=@EndAngle
|
|
Min=@Min
|
|
Max=@Max
|
|
Size=@CurrentSize
|
|
/>
|
|
</g>
|
|
<CascadingValue Value=@this>
|
|
@ChildContent
|
|
</CascadingValue>
|