highcharts,没有数据位置
highcharts, no data position
我在 highcharts 中配置我的图表,一切正常,但 noData 位置。
这是我的选择:
optionsChart = {
chart: {
type: 'bar'
},
lang: {
noData: 'No data available'
},
noData: {
position: {
align: 'end'
}
}
}
文字设置好但没有对齐,请问如何解决?
它适用于 left
、center
或 right
noData:{
position:{
align:'right'
}
},
我在 highcharts 中配置我的图表,一切正常,但 noData 位置。
这是我的选择:
optionsChart = {
chart: {
type: 'bar'
},
lang: {
noData: 'No data available'
},
noData: {
position: {
align: 'end'
}
}
}
文字设置好但没有对齐,请问如何解决?
它适用于 left
、center
或 right
noData:{
position:{
align:'right'
}
},