views:

20

answers:

1

I currently have a point chart using the asp.net charting toolkit, but would like to place a line of best fit on the same chart. Assuming that I know how to calculate the equation for the line (y=mx+b), how would I overlay this in the same graph?

A: 

Needed to create a different series within the ChartArea and set ChartType = "Line"

cfarm54