Quiero crear un indicador lineal con gráficos DevExtreme. Puedo obtener todos los datos, no es el problema, pero el valor inicial y el valor final no se muestran. ¿Cómo puede solucionarlo?
mi código
<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>