echarts图表显示不全以及图表右上角标签颜色设置

图表显示不全解决办法

option中添加 grid属性
{
left: ‘72px’,//左边距72px
right: ‘4%’,
bottom: ‘14%’,
top: ‘16%’,
containLabel: false
},

右上角标签设置

option中添加属性
legend: {
textStyle: {
color: ‘red’ // 设置标签的字体颜色
}
},

你可能感兴趣的:(前端,echarts)