We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Users should be able to select a range in the column bar, but not zooming the chart.
Users can select a range in the column bar (which is correct), but they also can zooming the chart with the mouse scroll button.
Now, I am using the version 2.52 of the library, in which the zooming with the mouse scroll button is not implemented.
After using the mouse scroll button inside the chart, the second image should not be zoomed.
JAVASCRIPT CODE
var options = { chart: { type: "bar", toolbar: { show: true, tools: { download: true, selection: true, zoom: false, zoomin: false, zoomout: false, pan: false, reset: false, customIcons: [] } }, selection: { enabled: true, type: 'x', xaxis: { min: 0, max: 100, } }, zoom: { enabled: false } }, series: [{ name: "count", data: [ [0, 50], [1, 48], [10, 99], [50, 75], [100, 87] ] }], xaxix: { type: 'numeric' }, }; var chart = new ApexCharts(document.querySelector("#chart"), options); chart.render();
CSS CODE
#chart { max-width: 650px; margin: 35px auto; }
HTML CODE
<div id="chart"> </div>
The text was updated successfully, but these errors were encountered:
Please provide the require reproduction codepen link. Code snippets do not count.
Sorry, something went wrong.
https://codepen.io/antoniolopezmc/pen/yLmYGoV
Here is the fork :)
Hi all, same behavior was observed on my side, I had to downgrade the version (Thank you for taking the time to make this issue 😊)
fe8c20d
No branches or pull requests
Description
Steps to Reproduce
Expected Behavior
Users should be able to select a range in the column bar, but not zooming the chart.
Actual Behavior
Users can select a range in the column bar (which is correct), but they also can zooming the chart with the mouse scroll button.
Now, I am using the version 2.52 of the library, in which the zooming with the mouse scroll button is not implemented.
Screenshots
After using the mouse scroll button inside the chart, the second image should not be zoomed.
Reproduction Link
JAVASCRIPT CODE
CSS CODE
HTML CODE
The text was updated successfully, but these errors were encountered: