嵌入到APP中,ios系统调整不了图上字体大小

描述:当前是关于Echarts图表中的 饼图 示例。
 
            option = {
    "legend": {
        "bottom": 10,
        "left": "center",
        "itemWidth": 12,
        "itemHeight": 12,
        "itemGap": 25,
        "icon": "stack",
        "data": ["未完成", "已完成"],
        "textStyle": {
            "fontSize": 10,
            "fontFamily": "PingFangSC-Regular"
        }
    },
    "series": [{
        "type": "pie",
        "hoverAnimation": false,
        "radius": "70%",
        "center": ["50%", "38%"],
        "label": {
            "normal": {
                "position": "inner",
                "formatter": "{d}%",
                "fontSize": 6
            }
        },
        "data": [{
            "value": 20,
            "name": "未完成"
        }, {
            "value": 64,
            "name": "已完成"
        }]
    }],
    "color": ["#F5A623", "#5B9CD6"]
}