I want to create a linear gauge with DevExtreme charts. I can get all data it is not the problem but start value and end value are not displaying. How can solve it?
my code
<LinearGauge id="gauge" subvalues={thr_days_current}>
<Geometry orientation="vertical" />
<Scale
startValue={thr_days_min}
endValue={thr_days_max}
tickInterval={thr_days_current}
>
<Tick color="#536878" />
<Label indentFromTick={-10} />
</Scale>
<RangeContainer offset={1}>
<Range
startValue={thr_days_min}
endValue={thr_days_current}
color="#77DD77"
/>
</RangeContainer>
<ValueIndicator offset={20} />
<SubvalueIndicator offset={4} type="circle" color="#00ff87" />
<Tooltip enabled={true} />
</LinearGauge>