未验证 提交 3126b0bd 编写于 作者: J Jeff Wang 提交者: GitHub

Ui control improvement (#448)

* Add label for the x-Axis

* Add zoom controll and save image feature to embedding.
上级 a4c104d5
...@@ -6,6 +6,37 @@ ...@@ -6,6 +6,37 @@
ref="chartBox" ref="chartBox"
class="visual-dl-chart-box" class="visual-dl-chart-box"
:style="computedStyle"/> :style="computedStyle"/>
<div class="visual-dl-chart-actions">
<v-btn
color="toolbox_icon"
flat
icon
@click="isSelectZoomEnable = !isSelectZoomEnable"
class="chart-toolbox-icons">
<img
v-if="!isSelectZoomEnable"
src="../../assets/ic_zoom_select_off.svg">
<img
v-if="isSelectZoomEnable"
src="../../assets/ic_zoom_select_on.svg">
</v-btn>
<v-btn
color="toolbox_icon"
flat
icon
@click="restoreChart"
class="chart-toolbox-icons">
<img src="../../assets/ic_undo.svg">
</v-btn>
<v-btn
color="toolbox_icon"
flat
icon
@click="saveChartAsImage"
class="chart-toolbox-icons" >
<img src="../../assets/ic_download.svg">
</v-btn>
</div>
</v-card> </v-card>
</template> </template>
...@@ -46,6 +77,8 @@ export default { ...@@ -46,6 +77,8 @@ export default {
height: 600, height: 600,
regularLabelColor: '#008c99', regularLabelColor: '#008c99',
matchedLabelColor: '#c23531', matchedLabelColor: '#c23531',
isSelectZoomEnable: true,
}; };
}, },
computed: { computed: {
...@@ -59,6 +92,7 @@ export default { ...@@ -59,6 +92,7 @@ export default {
this.createChart(); this.createChart();
this.set2DChartOptions(); this.set2DChartOptions();
this.setDisplayWordLabel(); this.setDisplayWordLabel();
this.toggleSelectZoom(true);
}, },
watch: { watch: {
embeddingData: function(val) { embeddingData: function(val) {
...@@ -88,6 +122,9 @@ export default { ...@@ -88,6 +122,9 @@ export default {
this.myChart.hideLoading(); this.myChart.hideLoading();
} }
}, },
isSelectZoomEnable: function(val) {
this.toggleSelectZoom(val);
},
}, },
methods: { methods: {
createChart() { createChart() {
...@@ -100,6 +137,18 @@ export default { ...@@ -100,6 +137,18 @@ export default {
animation: false, animation: false,
xAxis: {}, xAxis: {},
yAxis: {}, yAxis: {},
toolbox: {
show: true,
showTitle: false,
itemSize: 0,
feature: {
dataZoom: {
},
restore: {},
saveAsImage: {},
},
},
series: [{ series: [{
name: 'all', name: 'all',
symbolSize: 10, symbolSize: 10,
...@@ -234,6 +283,34 @@ export default { ...@@ -234,6 +283,34 @@ export default {
}], }],
}); });
}, },
toggleSelectZoom(enable) {
let instance = this;
setTimeout(function() {
instance.myChart.dispatchAction({
type: 'takeGlobalCursor',
key: 'dataZoomSelect',
dataZoomSelectActive: enable,
});
}, 0);
},
restoreChart() {
this.myChart.dispatchAction({
type: 'restore',
});
},
saveChartAsImage() {
let dataUrl = this.myChart.getDataURL({
pixelRatio: 1,
backgroundColor: '#fff',
});
let fileName = 'embedding';
let link = document.createElement('a');
link.download = fileName;
link.href = dataUrl;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
},
}, },
}; };
...@@ -244,4 +321,27 @@ export default { ...@@ -244,4 +321,27 @@ export default {
float left float left
padding 10px padding 10px
position relative position relative
.visual-dl-chart-actions
opacity 0
transition: opacity .3s ease-out;
position absolute
top 4px
right 10px
img
width 30px
height 30px
position absolute
top 0
bottom 0
margin auto
.chart-toolbox-icons
width 25px
height 25px
margin-left -4px
margin-right -4px
.visual-dl-page-charts:hover
.visual-dl-chart-actions
opacity 1
</style> </style>
...@@ -305,6 +305,7 @@ export default { ...@@ -305,6 +305,7 @@ export default {
}, },
xAxis: { xAxis: {
type: 'value', type: 'value',
name: this.horizontal,
axisLabel: { axisLabel: {
fontSize: '11', fontSize: '11',
}, },
...@@ -503,6 +504,7 @@ export default { ...@@ -503,6 +504,7 @@ export default {
step: { step: {
xAxis: { xAxis: {
type: 'value', type: 'value',
name: this.horizontal,
axisLabel: { axisLabel: {
fontSize: '11', fontSize: '11',
}, },
...@@ -513,6 +515,7 @@ export default { ...@@ -513,6 +515,7 @@ export default {
relative: { relative: {
xAxis: { xAxis: {
type: 'value', type: 'value',
name: this.horizontal,
axisLabel: { axisLabel: {
fontSize: '11', fontSize: '11',
}, },
...@@ -523,6 +526,7 @@ export default { ...@@ -523,6 +526,7 @@ export default {
wall: { wall: {
xAxis: { xAxis: {
type: 'time', type: 'time',
name: this.horizontal,
axisLabel: { axisLabel: {
fontSize: '11', fontSize: '11',
formatter: function(value, index) { formatter: function(value, index) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册