// 当图表没有数据的时候 显示暂无数据
graphic: {
type: "text", // 类型:文本
left: "center",
top: "middle",
silent: true, // 不响应事件
invisible: this.chartData.length > 0, // 有数据就隐藏
style: {
fill: this.secColor,
fontWeight: "bold",
text: "暂无数据",
fontSize: 14
}
},