User (Legacy) Posted December 12, 2005 Report Share Posted December 12, 2005 I am assigning new values for a point in a chart: chart.Point[series,point].BorderEffect = BorderEffect.None; chart.Point[series,point].BorderColor = Color.Black; chart.Point[series,point].LineWidth = 1; chart.Point[series,point].Border = true; when reloading the page, i am reassigning them, but the old assignation doesn't disappear despite of calling: chart.ClearData(ClearDataFlag.ColorsAndPatterns | ClearDataFlag.ConstantLines | ClearDataFlag.Stripes | ClearDataFlag.Other); may be this can be done with another solution? Link to comment Share on other sites More sharing options...
Software FX Posted December 13, 2005 Report Share Posted December 13, 2005 chart.Points.Clear(); Should do it. -- Francisco Padron www.chartfx.com Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.