I'm trying to increase the line thickness of my Line Chart implemented using react-google-charts. I have went through the documentation but anything related to line thickness did not work. How do i increase the line thickness and give separate colours to the lines. The below is my implementation and approach to increase the line thickness
<Chart
width={"98%"}
height={"290px"}
chartType="Line"
loader={<div>Loading Chart</div>}
data={transformedArray}
options={{
lineWidth: 10,
colors: ["black", "blue", "red", "green", "yellow", "gray"],
legend: { position: "none" }
}}
rootProps={{ "data-testid": "3" }}
/>
lineWidth: 10
did nothing to the lines.