With Dimension = Month, and Expressions = ONLY(Month) and SUM(Sales).
What I needed is to get the Trend Line formula (y=mx+b) showed on the chart.
I got that by using:
for M value = linest_m(total aggr(sum(Sales),Month),Month) -> -1.1783
for B value = linest_b(total aggr(sum(Sales),Month),Month) -> 26.742
The thing is I need to draw that line as a reference line on the chart (without using the automatic trend line) and get it fixed with those values, even if I make selections.