<qiun-data-charts type="map" :canvas2d="true" :opts="config" canvasId="mapma" :chartData="chartsDataMaps" tooltipFormat="tooltipFun" @getIndex="getIndex" /> </view> </template> import mapdata from '@/common/chinaMap.json' import uCharts from '@/uni_modules/qiun-data-charts/js_...
<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...
今天使用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 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...
初次使用如果提示未注册<qiun-data-charts>组件,请重启HBuilderX,如仍不好用,请重启电脑; 如果是cli项目,请尝试清理node_modules,重新install,还不行就删除项目,再重新install。 此问题已于DCloud官方确认,HBuilderX下个版本会修复。 其他图表不显示问题详见常见问题选项卡 新...
.charts{ width: 750rpx; height: 500rpx; } 2、组件方式 HTML部分 <template> <view class="charts-box"> <qiun-data-charts type="column" :chartData="chartData" /> </view></template> JS部分 export default { data() { return { chartData: {}, }; }, onReady(...