mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-13 16:27:33 +00:00
feat: update
This commit is contained in:
parent
f192e1bb29
commit
7f2917bec5
@ -30,6 +30,7 @@ limitations under the License. -->
|
|||||||
import type { LineConfig, EventParams, RelatedTrace, Filters } from "@/types/dashboard";
|
import type { LineConfig, EventParams, RelatedTrace, Filters } from "@/types/dashboard";
|
||||||
import Legend from "./components/Legend.vue";
|
import Legend from "./components/Legend.vue";
|
||||||
import useLegendProcess from "@/hooks/useLegendProcessor";
|
import useLegendProcess from "@/hooks/useLegendProcessor";
|
||||||
|
import { isDef } from "@/utils/is";
|
||||||
|
|
||||||
/*global defineProps, defineEmits */
|
/*global defineProps, defineEmits */
|
||||||
const emits = defineEmits(["click"]);
|
const emits = defineEmits(["click"]);
|
||||||
@ -73,7 +74,7 @@ limitations under the License. -->
|
|||||||
name: i,
|
name: i,
|
||||||
type: "line",
|
type: "line",
|
||||||
symbolSize: 5,
|
symbolSize: 5,
|
||||||
showSymbol: props.config.showSymbol,
|
showSymbol: isDef(props.config.showSymbol) ? props.config.showSymbol : true,
|
||||||
step: props.config.step,
|
step: props.config.step,
|
||||||
smooth: props.config.smooth,
|
smooth: props.config.smooth,
|
||||||
lineStyle: {
|
lineStyle: {
|
||||||
|
Loading…
Reference in New Issue
Block a user