Возникла проблема, из-за которой легенда amPieChart не появляется на нашем веб-сайте при запуске на iphone6. Работает нормально на iphone6 + и других, но на iphone6 это просто пустое место.
"legend": {
"divId": "piChartLegendDiv",
"position": "bottom",
"autoMargins": false,
"labelText": "[[title]]",
"valueWidth": "0",
"markerType": "circle",
}
Мобильные вещи:
/* ----------- iPhone 6 / 7 / 8 ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
.volume-custom-footer {
display: flex;
.card-footer {
display: inline-block;
}
}
.hidePad {
display: none;
}
.opta-avatar {
height: 65px !important;
width: 65px !important;
}
}
/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
.card-body-portrait{
height: auto !important;
}
.your-team-avatar-rsp {
width: 75px !important;
height: 75px !important;
}
}
/* Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
}
Что я могу попытаться заставить это работать или хотя бы приблизиться к проблеме?