is where my picture is circled
this is my code novice asking the great god for advice
option = {
tooltip : {
trigger: "axis",
},
toolbox: {
show : true,
feature : {
mark : {show: true},
dataView : {show: true, readOnly: false},
magicType : {show: true, type: ["line", "bar", "stack", "tiled"]},
restore : {show: true},
saveAsImage : {show: true}
}
},
calculable : true,
xAxis : [
{
type : "category",
boundaryGap : false,
data : ["2012","2013","2014","2015","2016","2017","2018"]
}
],
grid: {
"backgroundColor":"rgba(10,220,110,.5)",
height:"200"
},
yAxis : [
{
type : "value"
}
],
axisLabel:{
textStyle:{
color:"-sharp333333"//xy1
}
},
axisTick:
{
show: false,
},
series : [
{
name:"",
type:"line",
stack: "",
symbol:"circle",
symbolSize:"10",
itemStyle: {normal: {areaStyle: {type: "default"}}},
color: {
type: "linear",
x: 0,
y: 0,
x2: 0,
y2: 1,
colorStops: [{
offset: 1, color: "-sharpfefeff" // 0%
}, {
offset: 0.4, color: "-sharpe8efff" // 100%
}],
globalCoord: false // false
},
itemStyle: {
normal: {
areaStyle: {
//
},
lineStyle:{
color:"-sharpf68698"
}
}
},
data:[50, 110, 80, 200, 240, 70, 350]
},
]
};