`fig = px.scatter(df, x="value1", y="value2", trendline="ols", color="colorcolor")` has resulted in: ``` results = px.get_trendline_results(fig) print(results) ``` If I remove the color, then it works as expected. I don't know why a priori, trendline and color wouldn't be possible at the same time?