Change the shape of points in kendo react scatter chart

265 views Asked by At

I need to change to color and shape of points/items in the kendo react scatter chart. The default is circles with different colors but I need to change it to shapes of diamond, square, circle and plus.

Can anyone please provide help in this regard.

1

There are 1 answers

1
KendoReact - Stefan Stefanov On
<ChartSeriesItem
    type="scatter"
    data={data}
    xField="rainfall"
    yField="windSpeed"
    markers={{
     visible: true,
     type: "triangle",
    }}
 />

It can be controlled with the Markers properties type and background