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:/...
<qiun-title-bar title="柱状图+动态更新数据x1" /> <view class="charts-box"> <qiun-data-charts type="column" :chartData="chartsDataColumn1" :echartsH5="true" :echartsApp="true" :eopts="eopts" /> </view> </view> </template> export default { data() { return { eopts: { "xA...
今天使用hbuildx运行之前的项目发现引入的图表库ucharts报错了。确认代码没有明显问题之后发现竟然是因为hbuildx没有登录导致的...,重新登录后就正常运行了。 页面【components/qiun-data-charts/qiun-data-charts]错误: TypeError: Cannot read property 'length' of undefined...
微信小程序qiun-data-charts 层级问题 微信小程序使用qiun-data-charts 做的表格,因为一些功能不能同时出现,需要将两个charts重叠在一起,但是使用zindex无法控制两个表格的层级,后来发现,是按照代码顺序加载的,下面的代码层级比上面的代码层级高
</qiun-data-charts> </view> <text style="width:10%;display: inline-block;position: relative;top: -70px;right: 70px;">06:00:00</text> </view> <view style="text-align: center;width: 100%;position: relative;top:-15px">12:00:00</view> ...
<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...
秋云图表组件 修复APP端初始化时就传入chartData或lacaldata不显示图表的bug 2.1.1-20210509(2021-05-09) 秋云图表组件 变更ECharts的eopts配置在renderjs内执行,支持在config-echarts.js配置文件内写function配置。 秋云图表组件 修复APP端报错Prop being mutated: “onmouse...
查看了源码,在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...
data() { return { cWidth: 750, cHeight: 500 }; }, onReady() { //这里的 750 对应 css .charts 的 width this.cWidth = uni.upx2px(750); //这里的 500 对应 css .charts 的 height this.cHeight = uni.upx2px(500); this.getServerData(); ...