Have you tried the iOS simulator in Xcode to check for rendering issues? Also, check on Chrome for iOS because the latest Safari for iOS is the new IE8.
Charts.JS Not Rendering Properly on Mobile Device?
As the title says, I am trying to figure out why my charts are not rendering on my IOS devices. I am using the Chart.JS library from www.chartjs.org.
Everything looks correct on Chrome on my Macbook, even when emulating device via the developer tools.
When I go to the live URL on my IOS device, however, I am greeted with the following:

Has anyone had any experience with this? Know of any workarounds?
Thank You.
PS: This shouldn't be a significant issue, but the chart is part of a Vue component.
Yeah. JS resize options are also viable. The following CSS seemed to do the trick for now, though:
@keyframes chartfix {
0% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
50% {
transform: scale(1.01);
-webkit-transform: scale(1.01);
}
100% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
}
.panel {
animation-delay: 3s;
-webkit-animation-delay: 3s;
animation: chartfix 5s;
-webkit-animation: chartfix 5s;
}
I encapsulated it into the Vue component itself, and it is barely noticeable on the visual side of things.
It is very unfortunate that Safari is so troublesome. Especially when you consider that any web browser running on IOS is, essentially, running Safari "under the hood".
I know many have given up and went with different chart frameworks, but I can't fault Charts.JS for something that is the fault of Apple. Besides, if the framework is good enough for Jeffrey, it is good enough for me.
Please or to participate in this conversation.