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
Scatter Plot, Example 7 of https://sql-page.com/component.sql?component=chart
The scatter plot are drawned too far on the left, not on the correct position.
Use SQL of the documentation
select 'chart' as component, 'Gross domestic product and its growth' as title, 'scatter' as type, 'Growth Rate' as xtitle, 'GDP (Trillions USD)' as ytitle, 500 as height, 8 as marker, 0 as xmin, 10 as xmax, 0 as ymin, 25 as ymax, 5 as yticks; select 'Brazil' as series, 2.5 as x, 2 as y; select 'China' as series, 6.5 as x, 14 as y; select 'United States' as series, 2.3 as x, 21 as y; select 'France' as series, 1.5 as x, 3 as y; select 'South Africa' as series, 0.9 as x, 0.3 as y;
Unites States, Brazil and China plots are drawned too far on the left.
x axis : Growth Rate
the 2.3 (x) is not after the "2 marker"
the 2.5 (x) is not after the "2 marker"
the 6.5 (x) is not after the "6 marker"
The text was updated successfully, but these errors were encountered:
Hi @aedion-a ! Thank you for reporting this ! I'm looking into it.
Sorry, something went wrong.
I reported the issue upstream to the ApexCharts plotting library as apexcharts/apexcharts.js#4935
No branches or pull requests
Introduction
Scatter Plot, Example 7 of https://sql-page.com/component.sql?component=chart
The scatter plot are drawned too far on the left, not on the correct position.
To Reproduce
Use SQL of the documentation
Actual behavior
Unites States, Brazil and China plots are drawned too far on the left.
Screenshots
x axis : Growth Rate
United states
the 2.3 (x) is not after the "2 marker"
Brazil
the 2.5 (x) is not after the "2 marker"
China
the 6.5 (x) is not after the "6 marker"
Version information
The text was updated successfully, but these errors were encountered: