Browse Source

!738 Modify the model traceability parameters to optimize the y-axis title display of the histogram

Merge pull request !738 from 秦君艳/uiwidth
tags/v1.1.0
mindspore-ci-bot Gitee 5 years ago
parent
commit
746e30e370
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindinsight/ui/src/mixins/modelData.vue

+ 1
- 1
mindinsight/ui/src/mixins/modelData.vue View File

@@ -207,7 +207,7 @@ export default {
data: this.barYAxisData,
axisLabel: {
formatter: function(params) {
const maxLength = 12;
const maxLength = 10;
if (params.length > maxLength) {
return params.substring(0, maxLength) + '...';
} else {


Loading…
Cancel
Save