Chart breaks on breakpoint that is not specified
See original GitHub issueHi, I’m using the responsive option to override some default styling on desktop screens:
responsive: [
{
breakpoint: 600,
options: {
markers: {
size: 1.5
}
}
},
{
breakpoint: 1024,
options: {
dataLabels: {
style: {
fontSize: '13px'
}
}
}
}
]
It works perfectly on the specified breakpoints, however, on screen sizes that are over the biggest specified breakpoint it will break with this error:
Chart is rendering on all screen sizes if I don’t include the responsive option.
I was using these versions:
"apexcharts": "^3.15.3",
"vue-apexcharts": "^1.5.2",
And I updated to these:
"apexcharts": "^3.22.2",
"vue-apexcharts": "^1.6.0",
Both have the same error and breaking behaviour. Am I supposed to move all the default into the responsive option or am I doing it right to just leave them outside? Thanks in advance!
Issue Analytics
- State:
- Created 3 years ago
- Comments:19 (3 by maintainers)
Top Results From Across the Web
Troubleshoot Breakpoints in the Visual Studio Debugger
If you're debugging optimized code, make sure the function where your breakpoint is set isn't being inlined into another function. The Debugger.
Read more >Set Breakpoints to Debug Charts - Stateflow - MathWorks
To set a breakpoint on a chart, right-click inside the chart and select Set Breakpoint on Chart Entry. This type of breakpoint pauses...
Read more >Chrome DevTools won't let me set breakpoints on certain lines
In my case, I could not put a break point on the calling function line, but it worked into the function... weird but...
Read more >Debugging with GDB - Setting breakpoints
Breakpoints are set with the break command (abbreviated b ). ... Print a table of all breakpoints, watchpoints, and catchpoints set and not...
Read more >Debugging with GDB - Stopping and Continuing
You can set breakpoints with the break command and its variants (see section ... Print a table of all breakpoints and watchpoints set...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Just to clarify @yzontov’s workaround:
I would still like to see this issue properly resolved though, as using the above workaround opens #1875 again.
No thanks bot, this issue is still valid 😄