How to select specific marker in MUI React Charts

0 votes
Can i know How to select specific marker in MUI React Charts
2 days ago in Node-js by Ashutosh
• 24,610 points
15 views

1 answer to this question.

0 votes

You can implement marker selection through click events and controlled props. Here's how to do it:

Using onItemClick and Controlled Selection:

import { ScatterChart } from '@mui/x-charts';

import { useState } from 'react';

function ChartWithSelectableMarkers() {

  const [selectedMarker, setSelectedMarker] = useState(null);

  const data = [

    { id: 'point1', x: 10, y: 20 },

    { id: 'point2', x: 15, y: 25 },

    { id: 'point3', x: 20, y: 30 },

  ];

  return (

    <ScatterChart

      series={[

        {

          data: data,

          label: 'Series 1',

          color: (params) => 

            params.id === selectedMarker ? 'red' : 'blue',

        },

      ]}

      onItemClick={(event, params) => {

        setSelectedMarker(params?.id);

      }}

      width={500}

      height={300}

    />

  );

}

answered 1 day ago by anonymous

Related Questions In Node-js

0 votes
1 answer

how to handle error in react native

Handling errors in React Native can be ...READ MORE

answered Dec 12, 2024 in Node-js by Navya
135 views
0 votes
1 answer

How to Handle Jest Unit Testing for 'ɵcmp' in a React-in-Angular Hybrid App?

Encountering the 'ɵcmp' property error during Jest ...READ MORE

answered Dec 23, 2024 in Node-js by Navya
118 views
0 votes
1 answer

How to add tooltip to div in react?

You can utilize React's state management to ...READ MORE

answered Dec 24, 2024 in Node-js by Navya
94 views
0 votes
1 answer

How to add popper.js in React?

Install Popper.js via npm (npm install @popperjs/core), ...READ MORE

answered Feb 23 in Node-js by Kavya
194 views
0 votes
1 answer

How do I control the space between the bars in my BarPlot of my MUI Bar Chart?

Controlling Space Between Bars in MUI Bar ...READ MORE

answered 1 day ago in Node-js by anonymous
19 views
0 votes
1 answer

What is the importance of crud operations?

CRUD (Create, Read, Update, Delete) operations are fundamental ...READ MORE

answered 1 day ago in Node-js by anonymous
18 views
0 votes
1 answer

How can i fix the helvetica error in NextJS with pdfkit-Table

It typically occurs when PDFKit (used by ...READ MORE

answered 1 day ago in Node-js by anonymous
15 views
0 votes
1 answer

How to customize Autocomplete of MUI, in react?

The following approaches are used to customize ...READ MORE

answered 1 day ago in Node-js by anonymous
21 views
0 votes
1 answer

How to customize Autocomplete of MUI, in react?

you can use the following approaches to ...READ MORE

answered 1 day ago in Node-js by anonymous
19 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP