I am using Apex charts in the angular project, I have implemented a time series chart there I am not able to decrease the "thickness of a line" in the line chart.
here is my config.
public initChartData(): void {
this.series = this.response_data['data']
this.chart = {
type: "area",
stacked: true,
height: 350,
zoom: {
type: "x",
enabled: true,
autoScaleYaxis: false
},
toolbar: {
autoSelected: "zoom",
show: true,
tools: {
zoomin: false,
zoomout: false,
}
},
},
this.dataLabels = {
enabled: false
};
this.markers = {
size: 0
};
this.stroke ={
width: 1,
curve: 'smooth',
},
this.fill = {
type: "gradient",
gradient: {
shadeIntensity: 1,
opacityFrom: 0.7,
opacityTo: 0.9,
stops: [0, 90, 100]
},
pattern: {
strokeWidth: 0.5
}
};
this.yaxis = {
labels: {
formatter: function(val) {
return (val / 1).toFixed(0);
}
}
};
this.xaxis = {
type: "datetime"
};
this.tooltip = {
shared: false,
y: {
formatter: function(val) {
return (val / 1).toFixed(0);
}
}
};
}
can anyone help me with this code, I have tried other ways also but it didn't worked.