echarts折れ線グラフスタイル
3625 ワード
tooltip: {
trigger: "item",
triggerOn: "'mousemove|click",
showContent: true,
transitionDuration: 0,
formatter: "{b0}
{c0}"
},
xAxis: {
type: "category",
boundaryGap: false,
data: ["", " ", " ", " "],
offset: 20,
axisLine: {
show: false,
lineStyle: {
color: "#ADB9C5"
}
},
axisLabel: {
fontSize: 14
},
axisTick: {
show: false
}
},
yAxis: {
type: "value",
name: " ",
min: 0,
max: 1,
splitNumber: 10,
offset: 10,
nameTextStyle: {
color: "#14112E",
fontWeight: "bolder",
fontSize: 17,
lineHeight: 56,
align: "right"
},
axisLine: {
show: false,
lineStyle: {
color: "#ADB9C5"
}
},
axisTick: {
show: false
}
},
series: [
{
type: "line",
// symbol: "emptyCircle",
symbolSize: 20,//
data: [0, 0.7, 0.3, 0.8],//
lineStyle: {
normal: {
color: "#166CC8",//
shadowColor: "#166CC8", //
shadowOffsetY: 5, //
shadowBlur: 10
}
},
itemStyle: {
normal: {
color: "#166CC8", //
borderWidth: 1, //
borderColor: "white" //
}
}
}
]```