You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2023/04/14 09:09:37 UTC

[skywalking-booster-ui] branch main updated: feat: update options for line graph (#259)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-booster-ui.git


The following commit(s) were added to refs/heads/main by this push:
     new 7257858  feat: update options for line graph (#259)
7257858 is described below

commit 7257858921839d43f9b6fd8900fa78eaa7bb98b4
Author: Fine0830 <fa...@gmail.com>
AuthorDate: Fri Apr 14 17:09:30 2023 +0800

    feat: update options for line graph (#259)
---
 src/views/dashboard/graphs/Line.vue | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/views/dashboard/graphs/Line.vue b/src/views/dashboard/graphs/Line.vue
index b35e142..fdfdbb4 100644
--- a/src/views/dashboard/graphs/Line.vue
+++ b/src/views/dashboard/graphs/Line.vue
@@ -73,12 +73,13 @@ limitations under the License. -->
         data: props.data[i].map((item: any, itemIndex: number) => [props.intervalTime[itemIndex], item]),
         name: i,
         type: "line",
-        symbolSize: 5,
+        symbol: "circle",
+        symbolSize: 4,
         showSymbol: isDef(props.config.showSymbol) ? props.config.showSymbol : true,
         step: props.config.step,
         smooth: props.config.smooth,
         lineStyle: {
-          width: 1.5,
+          width: 2,
           type: "solid",
         },
       };