feat: update line

This commit is contained in:
Fine 2023-04-14 09:46:24 +08:00
parent 3f178f89f8
commit f192e1bb29
2 changed files with 2 additions and 3 deletions

View File

@ -65,7 +65,7 @@ export const DefaultGraphConfig: { [key: string]: any } = {
type: "Line",
step: false,
smooth: false,
showSymbol: false,
showSymbol: true,
showXAxis: true,
showYAxis: true,
},

View File

@ -72,8 +72,7 @@ limitations under the License. -->
data: props.data[i].map((item: any, itemIndex: number) => [props.intervalTime[itemIndex], item]),
name: i,
type: "line",
symbol: "circle",
symbolSize: 8,
symbolSize: 5,
showSymbol: props.config.showSymbol,
step: props.config.step,
smooth: props.config.smooth,