Hi Eddy,
Thank you for contacting Syncfusion support.
We are unable to reproduce the reported issue in the React application. We have rendered the pointers in the Linear Gauge control using the “map” function for looping with the array of pointer values. Please find the code snippet for the same below.
Code Snippet:
|
var pointerValues = [0, 20, 40, 50, 80];
render() {
return(
...
<PointersDirective>
{pointerValues.map(item=> (
<PointerDirective
value={item}
color="blue"
markerType="Circle"
/>
))}
</PointersDirective>
...
);
}
|
We have created a sample to demonstrate the same and it can be found from the below link.
Please let us know if you need any further assistance.
Regards,
Indumathi R.