Compare commits
10 Commits
V2.4.6-alp
...
V2.4.8-alp
Author | SHA1 | Date | |
---|---|---|---|
bbdf7ea5a9 | |||
cabe75fed8 | |||
431dddf0b5 | |||
8b8fb00988 | |||
9f26ff6280 | |||
5c52f9d6b0 | |||
c1881757a8 | |||
a02654a565 | |||
36f9c6f8ab | |||
0b270cda52 |
@ -1,3 +1,10 @@
|
||||
# 2.4.7-alpha (2019-10-24)
|
||||
|
||||
### perfect
|
||||
|
||||
- **charts:** Optimize memory leaks.
|
||||
- **digitalFlop:** Optimize memory leaks.
|
||||
|
||||
# 2.4.6-alpha (2019-10-24)
|
||||
|
||||
### Bug Fixes
|
||||
|
@ -44,12 +44,6 @@ Vue.use(borderBox1)
|
||||
|
||||
[UMD版使用示例](./umdExample.html)
|
||||
|
||||
### 调研
|
||||
|
||||
关于React版本组件库及反馈请移步[问卷调查](https://www.wjx.cn/jq/45326197.aspx)
|
||||
|
||||

|
||||
|
||||
### TODO
|
||||
|
||||
* **飞线图**添加多中心点及反向飞线功能
|
||||
@ -60,7 +54,6 @@ Vue.use(borderBox1)
|
||||
组件库的开发基于个人学习和兴趣,由于技术水平及经验的限制,组件尚有许多不完善之处,如有BUG可及时提交[issue](https://github.com/DataV-Team/DataV/issues/new?template=bug_report.md)或添加反馈群进行反馈,也欢迎提供指正和建议,感谢各位的支持。
|
||||
|
||||
### 反馈
|
||||
|
||||

|
||||
|
||||
### Demo
|
||||
|
7
dist/datav.map.vue.js
vendored
7
dist/datav.map.vue.js
vendored
@ -16757,7 +16757,7 @@
|
||||
} = this;
|
||||
if (!chart) return;
|
||||
if (!option) option = {};
|
||||
chart.setOption(option);
|
||||
chart.setOption(option, true);
|
||||
}
|
||||
|
||||
},
|
||||
@ -16809,7 +16809,7 @@
|
||||
/* style */
|
||||
const __vue_inject_styles__$m = function (inject) {
|
||||
if (!inject) return
|
||||
inject("data-v-507831a4_0", { source: ".dv-charts-container {\n position: relative;\n width: 100%;\n height: 100%;\n}\n.dv-charts-container .charts-canvas-container {\n width: 100%;\n height: 100%;\n}\n", map: {"version":3,"sources":["main.vue"],"names":[],"mappings":"AAAA;EACE,kBAAkB;EAClB,WAAW;EACX,YAAY;AACd;AACA;EACE,WAAW;EACX,YAAY;AACd","file":"main.vue","sourcesContent":[".dv-charts-container {\n position: relative;\n width: 100%;\n height: 100%;\n}\n.dv-charts-container .charts-canvas-container {\n width: 100%;\n height: 100%;\n}\n"]}, media: undefined });
|
||||
inject("data-v-5e36f670_0", { source: ".dv-charts-container {\n position: relative;\n width: 100%;\n height: 100%;\n}\n.dv-charts-container .charts-canvas-container {\n width: 100%;\n height: 100%;\n}\n", map: {"version":3,"sources":["main.vue"],"names":[],"mappings":"AAAA;EACE,kBAAkB;EAClB,WAAW;EACX,YAAY;AACd;AACA;EACE,WAAW;EACX,YAAY;AACd","file":"main.vue","sourcesContent":[".dv-charts-container {\n position: relative;\n width: 100%;\n height: 100%;\n}\n.dv-charts-container .charts-canvas-container {\n width: 100%;\n height: 100%;\n}\n"]}, media: undefined });
|
||||
|
||||
};
|
||||
/* scoped */
|
||||
@ -17007,6 +17007,7 @@
|
||||
graph,
|
||||
mergedConfig
|
||||
} = this;
|
||||
graph.animationEnd();
|
||||
mergeConfig();
|
||||
if (!graph) return;
|
||||
const {
|
||||
@ -17057,7 +17058,7 @@
|
||||
/* style */
|
||||
const __vue_inject_styles__$n = function (inject) {
|
||||
if (!inject) return
|
||||
inject("data-v-9869eff4_0", { source: ".dv-digital-flop canvas {\n width: 100%;\n height: 100%;\n}\n", map: {"version":3,"sources":["main.vue"],"names":[],"mappings":"AAAA;EACE,WAAW;EACX,YAAY;AACd","file":"main.vue","sourcesContent":[".dv-digital-flop canvas {\n width: 100%;\n height: 100%;\n}\n"]}, media: undefined });
|
||||
inject("data-v-2cf25a2e_0", { source: ".dv-digital-flop canvas {\n width: 100%;\n height: 100%;\n}\n", map: {"version":3,"sources":["main.vue"],"names":[],"mappings":"AAAA;EACE,WAAW;EACX,YAAY;AACd","file":"main.vue","sourcesContent":[".dv-digital-flop canvas {\n width: 100%;\n height: 100%;\n}\n"]}, media: undefined });
|
||||
|
||||
};
|
||||
/* scoped */
|
||||
|
2
dist/datav.min.vue.js
vendored
2
dist/datav.min.vue.js
vendored
File diff suppressed because one or more lines are too long
@ -35,7 +35,7 @@ export default {
|
||||
|
||||
if (!option) option = {}
|
||||
|
||||
chart.setOption(option)
|
||||
chart.setOption(option, true)
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
@ -151,6 +151,8 @@ export default {
|
||||
update () {
|
||||
const { mergeConfig, mergeShape, getShape, getStyle, graph, mergedConfig } = this
|
||||
|
||||
graph.animationEnd()
|
||||
|
||||
mergeConfig()
|
||||
|
||||
if (!graph) return
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@jiaminghi/data-view",
|
||||
"version": "2.4.6",
|
||||
"version": "2.4.7",
|
||||
"author": "JiaMing <743192023@qq.com>",
|
||||
"description": "Vue Large screen data display component library",
|
||||
"main": "lib/index.js",
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 8.6 KiB |
@ -35,7 +35,7 @@ export default {
|
||||
|
||||
if (!option) option = {}
|
||||
|
||||
chart.setOption(option)
|
||||
chart.setOption(option, true)
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
@ -151,6 +151,8 @@ export default {
|
||||
update () {
|
||||
const { mergeConfig, mergeShape, getShape, getStyle, graph, mergedConfig } = this
|
||||
|
||||
graph.animationEnd()
|
||||
|
||||
mergeConfig()
|
||||
|
||||
if (!graph) return
|
||||
|
@ -3,14 +3,12 @@
|
||||
<head>
|
||||
<title>DataV</title>
|
||||
<script src="https://unpkg.com/vue"></script>
|
||||
<!--Resources are located on personal servers for experience and testing only, do not use in production environments-->
|
||||
<!--资源位于个人服务器仅供体验和测试,请勿在生产环境使用-->
|
||||
<!--Debug version-->
|
||||
<!--调试版-->
|
||||
<script src="http://lib.jiaminghi.com/datav/datav.map.vue.js"></script>
|
||||
<script src="https://unpkg.com/@jiaminghi/data-view/dist/datav.map.vue.js"></script>
|
||||
<!--Compression version-->
|
||||
<!--压缩版-->
|
||||
<!-- <script src="http://lib.jiaminghi.com/datav/datav.min.vue.js"></script> -->
|
||||
<!-- <script src="https://unpkg.com/@jiaminghi/data-view/dist/datav.min.vue.js"></script> -->
|
||||
<style>
|
||||
html, body, #app {
|
||||
width: 100%;
|
||||
|
Reference in New Issue
Block a user