<qiun-data-chartstype="ring":eopts="opts":chartData="chartData":errorShow="false":errorReload="false":tooltipShow="false":tapLegend="false":ontap="false":onmouse="false"background="none":echartsH5="true":echartsApp="true"/>opts:{color:['#00C86B','#0E95F3'],dataLabel:false,lege...
chartsDataMaps: { series: [] }, // 覆盖的是 option config: { extra: { map: { mercator: true } } } }; }, created() { //@/uni_modules/qiun-data-charts/js_sdk/u-charts/config-ucharts.js 更详细配置的查看此处 // 文档可看 https://ext.dcloud.net.cn/plugin?id=271 //https:/...
今天使用hbuildx运行之前的项目发现引入的图表库ucharts报错了。确认代码没有明显问题之后发现竟然是因为hbuildx没有登录导致的...,重新登录后就正常运行了。 页面【components/qiun-data-charts/qiun-data-charts]错误: TypeError: Cannot read property 'length' of undefined...
<qiun-data-charts type="column" :chartData="chartsDataColumn1" :echartsH5="true" :echartsApp="true" :eopts="eopts" /> </view> </view> </template> export default { data() { return { eopts: { "xAxis": { "axisLabel": { "color":...
:chartData="item" :tooltipFormat="pieTipTemp" :tooltipCustom="tooltipCustom" :tapLegend="true"> </qiun-data-charts> </view> <text style="width:10%;display: inline-block;position: relative;top: -70px;right: 70px;">06:00:00</text> ...
查看了源码,在qiun-data-charts.vue的mounted中直接修改了prop的onmouse,按Vue的建议不要直接修改,建议使用data或computed来操作。直接注释掉暂时也不影响使用,建议老大完善下 重现步骤 报错信息 [Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-re...
秋云图表组件 修复APP端初始化时就传入chartData或lacaldata不显示图表的bug 2.1.1-20210509(2021-05-09) 秋云图表组件 变更ECharts的eopts配置在renderjs内执行,支持在config-echarts.js配置文件内写function配置。 秋云图表组件 修复APP端报错Prop being mutated: “onmouse...
this.cWidth = uni.upx2px(750); //这里的 500 对应 css .charts 的 height this.cHeight = uni.upx2px(500); this.getServerData(); }, methods: { getServerData() { //模拟从服务器获取数据时的延时 setTimeout(() => { let res = { categories: ["2016","2017","2018","2019","2020...
关于NVUE兼容的说明: uCharts.js从2.3.0开始支持nuve(暂时只能通过原生canvas写法调用uCharts,nuve版本组件请见码云示例项目uCharts-demo-nvue),因其渲染方式是通过nvue的gcanvas组件来渲染,理论上性能不及renderjs的qiun-data-charts组件性能。官方仍然建议NVUE使用图表的页面改为vue页面,在App端,...