Mike
Mike

Reputation: 1327

Material-UI Data Visualization

It looks like Material-UI doesn't support any form of data visualization? Does anyone know of any libraries that are both responsive and material-ui-esque in design and aesthetic?

Upvotes: 4

Views: 7828

Answers (3)

Andres A
Andres A

Reputation: 11

For those who are still looking, I would highly recommend using ApexCharts https://apexcharts.com/ and customizing the look to be more MUI-esque. It's open source, responsive and highly customizable. It's by far the best I've found.

Upvotes: 1

Michael
Michael

Reputation: 335

For future guys seeing this query, you might wanna take a look at DevExtreme Reactive React Chart component for your data visualization needs.

They work well with Material UI and the plugin is highly scalable in terms of different visualization requirements.

https://devexpress.github.io/devextreme-reactive/react/chart/

Upvotes: 2

awaruaboy
awaruaboy

Reputation: 66

I have found https://github.com/reactjs/react-chartjs fits in quite nicely with the MUI aesthetic. You can use Mui theme to set colors of graphs etc... You do need to also include the chartjs library as below in package.json

"dependencies": { "chart.js": "^1.1.1", "react-chartjs": "^1.2.0" }

Upvotes: 1

Related Questions