Dundas Chart for ASP.NET
ShowMarkerLines Custom Attribute
See Also Send comments on this topic.
Custom Attributes > ShowMarkerLines Custom Attribute



Glossary Item Box

Gets or sets a boolean value that indicates that marker lines are displayed when rendered in 3D.
Visual Basic Copy Code
Imports Dundas.Charting.WebControl
   ...

' Set the series to not draw the marker lines.
Chart1.Series(0)("ShowMarkerLines") = "false"

' Set Point 3 to draw the marker lines.
Chart1.Series(0).Points(3)("ShowMarkerLines") = "true"


C# Copy Code
using Dundas.Charting.WebControl;
  ...

// Set the series to not draw the marker lines.
Chart1.Series[0]["ShowMarkerLines"] = "false";

// Set Point 3 to draw the marker lines.
Chart1.Series[0].Points[3]["ShowMarkerLines"] = "true";


Remarks

Gets or sets a boolean value that indicates that vertical marker lines are displayed from the DataPoint Y value to the X Axis when rendered in 3D. The attribute only affects the Line, Spline, StepLineArea, SplineArea, Range, and SplineRange charts. 

Custom Attribute Summary
Possible Values: True  - Marker lines are shown.
False  - Marker lines are not shown.
Default Value: False 
2D / 3D Limitations: 3D Only 
Applies to Chart Element: Series and DataPoint Objects
Applies to Chart Types: Line, Spline, StepLine, Area, SplineArea, Range, SplineRange

See Also

Copyright © 2001 - 2009 Dundas Data Visualization, Inc. and others.