Disable feature of Apexchart - reactjs

I used type Area Charts of lib ApexCharts.js for create chart in React Js app. But i have problem when i zoom in or zoom out the screen, the chart will auto re-render and reload data for display.
How to disable that feature?

Related

How to implement a vertical scroll indicator progressbar in React project

Please check the red marked area of the picture. I need to implement this thing in a React project. It's a vertical scroll timeline indicator of all posts coming from the database.

Log scale charts in react native

I need to implement a chart in react native whose x axis should be in log scale.
Please suggest any chart library to do so.
I am currently using syncfusion chart which is for react js,it seems ok on web view but show error in expo.

Make animation rich dashboard with charts in react

I want to create some animation rich charts in a dashboard, I have attached some images on how I want,
Where onclick of pie chart section, that section gets separated, and with loader animation, like its loading pie chart.
Some beautiful barchart with loader animation and such.
Before I used react-chartjs-2 library and I was able to build basic dashboard, but I was very static and I was unable add animations as such. If anyone could suggest me some libraries, that is rich in animation or some sample dashboard that includes these features.
Check out Victory Charts (https://formidable.com/open-source/victory/), I've used them in the past for react native projects and loved the API, but it's really a web charts library (the mobile version has performance issues).

How to enable scrolling in CanvasJS charts on mobile?

I am using the ReactJS version of the CanvasJS library.
I have some charts laid out on the screen such that they take up close to 100% height and width on a mobile device.
When I place my fingers on the chart and drag (in order to scroll down the page), I am unable to scroll. This issue doesn't happen on other parts of the page where I don't have the chart.
Is there any way to get scrolling working properly when touching these charts on mobile?
Figured it out.
I had the CanvasJS component wrapped inside a div component.
This div component had the following CSS attributes applied to it:
overflow-y:auto;
overflow:scroll;
overflow-x:auto;
Once I removed those CSS attributes (which didn't need to be there in the first place) I was able to touch-drag on the chart component on mobile.

Add more charts in angular highcharts

I use angular highcharts-ng and only have a line chart, bar chart and pie chart. Now how can I add more charts like gauge chart and score card in this plugin?
plugin github page
You'll need to add a new series with the desired chart type. There are some good demos on the Highcharts home page that show combo graphs.

Resources