dataLabel数据文字格式化
<!-- seriesTemplate是config-echarts.js中对应图表类型定义好的series模板 ,如果每个series的formatter都不一样,则format需要定义在chartData.series中,不能使用seriesTemplate -->
<!-- formatter需要把echarts文档内的formatter转成format,对应的'seriesFormatDemo'这个字符串为config-echarts.js中的formatter节点中的 seriesFormatDemo 方法-->
.vue标签设置seriesTemplate
<view class="charts-box">
<qiun-data-charts
type="line"
:echartsH5="true"
:echartsApp="true"
:eopts="{seriesTemplate:{label:{format:'seriesFormatDemo'}}}"
:chartData="chartsDataLine1"
/>
</view>
config-echarts.js配置格式化函数
运行效果就出来了。