I want to play with the chart format. Where can I find the documentation that explains all the available options? Does anyone know how to add visible markers? My data is a monthly timeseries and at the moment my chart shows a solid line with no markers. I have found this link here which mentions markers but that’s in the context of plotly express and I’m just using plotly in a dash context.
@farispriadi No problem. I have a related question… I am now trying to change the style of the text of the chart axes labels. I’ve tried this:
data = [
{
"x": df.iloc[:,0],
"y": df.iloc[:,1],
"line": {"color": "red"},
"mode": "lines+markers",
"textfont":{"color":"green","size":1}, # this line here doesn't do what I need
}
]
but it doesn’t do anything. No error but the font remains unchanged. Do you have any suggestions please?