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
Hi team, we need to found a way to make the top line be fully displayed and not just half of the line as the screenshot below:
Regards
The text was updated successfully, but these errors were encountered:
Update Fixed the problem of 'covered dots' with these patch styles:
.visChart__container .chart > svg{ position: absolute; } .visChart__container svg g.points.line, .visChart__container svg g.points.area { display: contents; }
Sorry, something went wrong.
The next line is unsafe:
if ((visParams || {}).valueAxes && (this.visData.series || [])[0]) {
Replace it with the next ones:
const valueAxes = (visParams || {}).valueAxes || false; const hasSeries = ((this.visData || {}).series || []).length; if (valueAxes && hasSeries) {
juankaromo
No branches or pull requests
Hi team, we need to found a way to make the top line be fully displayed and not just half of the line as the screenshot below:
Regards
The text was updated successfully, but these errors were encountered: