1 write to _linePen
System.Web.DataVisualization (1)
Common\ChartTypes\LineChart.cs (1)
2465
this.
_linePen
= null;
16 references to _linePen
System.Web.DataVisualization (16)
Common\ChartTypes\LineChart.cs (16)
810
if(
_linePen
.Color != color)
812
_linePen
.Color = color;
814
if(
_linePen
.Width != pointBorderWidth)
816
_linePen
.Width = pointBorderWidth;
818
if(
_linePen
.DashStyle != graph.GetPenStyle( dashStyle ))
820
_linePen
.DashStyle = graph.GetPenStyle( dashStyle );
824
if(
_linePen
.StartCap != LineCap.Round)
825
_linePen
.StartCap = LineCap.Round;
826
if(
_linePen
.EndCap != LineCap.Round)
827
_linePen
.EndCap = LineCap.Round;
834
this.DrawTruncatedLine(graph,
_linePen
, points[pointIndex - 1], points[pointIndex]);
840
graph.DrawLine(
_linePen
, points[pointIndex - 1], points[pointIndex]);
844
this.DrawTruncatedLine(graph,
_linePen
, points[pointIndex - 1], points[pointIndex]);
850
graph.DrawCurve(
_linePen
, points, pointIndex - 1, 1, tension);
2462
if (this.
_linePen
!= null)
2464
this.
_linePen
.Dispose();