Click here to Skip to main content
15,885,546 members
Articles / Multimedia / GDI+

A flexible charting library for .NET

Rate me:
Please Sign up or sign in to vote.
4.70/5 (1,112 votes)
6 Jun 200730 min read 8.9M   180.2K   2.1K  
Looking for a way to draw 2D line graphs with C#? Here's yet another charting class library with a high degree of configurability, that is also easy to use.
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>ZedGraph</name>
    </assembly>
    <members>
        <member name="T:ZedGraph.PointPairList">
            <summary>
            A collection class containing a list of <see cref="T:ZedGraph.PointPair"/> objects
            that define the set of points to be displayed on the curve.
            </summary>
            <seealso cref="T:ZedGraph.BasicArrayPointList"/>
            <seealso cref="T:ZedGraph.IPointList"/>
            
            <author> Jerry Vos based on code by John Champion
            modified by John Champion</author>
            <version> $Revision: 3.36 $ $Date: 2007/02/18 05:51:54 $ </version>
        </member>
        <member name="T:ZedGraph.IPointList">
            <summary>
            An interface to a collection class containing data
            that define the set of points to be displayed on the curve.
            </summary>
            <remarks>
            This interface is designed to allow customized data abstraction.  The default data
            collection class is <see cref="T:ZedGraph.PointPairList"/>, however, you can define your own
            data collection class using the <see cref="T:ZedGraph.IPointList"/> interface.
            </remarks>
            <seealso cref="T:ZedGraph.PointPairList"/>
            <seealso cref="T:ZedGraph.BasicArrayPointList"/>
            
            <author> John Champion</author>
            <version> $Revision: 1.5 $ $Date: 2006/10/19 04:40:14 $ </version>
        </member>
        <member name="P:ZedGraph.IPointList.Item(System.Int32)">
            <summary>
            Indexer to access a data point by its ordinal position in the collection.
            </summary>
            <remarks>
            This is the standard interface that ZedGraph uses to access the data.  Although
            you must pass a <see cref="T:ZedGraph.PointPair"/> here, your internal data storage format
            can be anything.
            </remarks>
            <param name="index">The ordinal position (zero-based) of the
            data point to be accessed.</param>
            <value>A <see cref="T:ZedGraph.PointPair"/> object instance.</value>
        </member>
        <member name="P:ZedGraph.IPointList.Count">
            <summary>
            Gets the number of points available in the list.
            </summary>
        </member>
        <member name="T:ZedGraph.IPointListEdit">
            <summary>
            An interface to a collection class containing data
            that define the set of points to be displayed on the curve.
            </summary>
            <remarks>
            This interface is designed to allow customized data abstraction.  The default data
            collection class is <see cref="T:ZedGraph.PointPairList"/>, however, you can define your own
            data collection class using the <see cref="T:ZedGraph.IPointList"/> interface.  This
            <see cref="T:ZedGraph.IPointListEdit"/> interface adds the ability to remove and add points
            to the list, and so is used by the <see cref="T:ZedGraph.CurveItem"/> class for the
            <see cref="M:ZedGraph.CurveItem.AddPoint(System.Double,System.Double)"/>, <see cref="M:ZedGraph.CurveItem.RemovePoint(System.Int32)"/>, and
            <see cref="M:ZedGraph.CurveItem.Clear"/> methods.
            </remarks>
            <seealso cref="T:ZedGraph.PointPairList"/>
            <seealso cref="T:ZedGraph.BasicArrayPointList"/>
            <seealso cref="T:ZedGraph.IPointList"/>
            <seealso cref="T:ZedGraph.FilteredPointList"/>
            
            <author> John Champion</author>
            <version> $Revision: 3.6 $ $Date: 2006/10/19 04:40:14 $ </version>
        </member>
        <member name="M:ZedGraph.IPointListEdit.Add(ZedGraph.PointPair)">
            <summary>
            Appends a point to the end of the list.  The data are passed in as a <see cref="T:ZedGraph.PointPair"/>
            object.
            </summary>
            <param name="point">The <see cref="T:ZedGraph.PointPair"/> object containing the data to be added.</param>
        </member>
        <member name="M:ZedGraph.IPointListEdit.Add(System.Double,System.Double)">
            <summary>
            Appends a point to the end of the list.  The data are passed in as two <see cref="T:System.Double"/>
            types.
            </summary>
            <param name="x">The <see cref="T:System.Double"/> value containing the X data to be added.</param>
            <param name="y">The <see cref="T:System.Double"/> value containing the Y data to be added.</param>
            <returns>The ordinal position (zero-based), at which the new point was added.</returns>
        </member>
        <member name="M:ZedGraph.IPointListEdit.RemoveAt(System.Int32)">
            <summary>
            Removes a single data point from the list at the specified ordinal location
            (zero based).
            </summary>
        </member>
        <member name="M:ZedGraph.IPointListEdit.Clear">
            <summary>
            Clears all data points from the list.  After calling this method,
            <see cref="P:ZedGraph.IPointList.Count"/> will be zero.
            </summary>
        </member>
        <member name="P:ZedGraph.IPointListEdit.Item(System.Int32)">
            <summary>
            Indexer to access a data point by its ordinal position in the collection.
            </summary>
            <remarks>
            This is the standard interface that ZedGraph uses to access the data.  Although
            you must pass a <see cref="T:ZedGraph.PointPair"/> here, your internal data storage format
            can be anything.
            </remarks>
            <param name="index">The ordinal position (zero-based) of the
            data point to be accessed.</param>
            <value>A <see cref="T:ZedGraph.PointPair"/> object instance.</value>
        </member>
        <member name="F:ZedGraph.PointPairList._sorted">
            <summary>Private field to maintain the sort status of this
            <see cref="T:ZedGraph.PointPairList"/>.  Use the public property
            <see cref="P:ZedGraph.PointPairList.Sorted"/> to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.PointPairList.#ctor">
            <summary>
            Default constructor for the collection class
            </summary>
        </member>
        <member name="M:ZedGraph.PointPairList.#ctor(System.Double[],System.Double[])">
            <summary>
            Constructor to initialize the PointPairList from two arrays of
            type double.
            </summary>
        </member>
        <member name="M:ZedGraph.PointPairList.#ctor(ZedGraph.IPointList)">
            <summary>
            Constructor to initialize the PointPairList from an IPointList
            </summary>
        </member>
        <member name="M:ZedGraph.PointPairList.#ctor(System.Double[],System.Double[],System.Double[])">
            <summary>
            Constructor to initialize the PointPairList from three arrays of
            type double.
            </summary>
        </member>
        <member name="M:ZedGraph.PointPairList.#ctor(ZedGraph.PointPairList)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The PointPairList from which to copy</param>
        </member>
        <member name="M:ZedGraph.PointPairList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.PointPairList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Add(ZedGraph.PointPair)">
            <summary>
            Add a <see cref="T:ZedGraph.PointPair"/> object to the collection at the end of the list.
            </summary>
            <param name="point">The <see cref="T:ZedGraph.PointPair"/> object to
            be added</param>
            <returns>The zero-based ordinal index where the point was added in the list.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Add(ZedGraph.PointPairList)">
            <summary>
            Add a <see cref="T:ZedGraph.PointPairList"/> object to the collection at the end of the list.
            </summary>
            <param name="pointList">A reference to the <see cref="T:ZedGraph.PointPairList"/> object to
            be added</param>
            <returns>The zero-based ordinal index where the last point was added in the list,
            or -1 if no points were added.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Add(System.Double[],System.Double[])">
            <summary>
            Add a set of points to the PointPairList from two arrays of type double.
            If either array is null, then a set of ordinal values is automatically
            generated in its place (see <see cref="F:ZedGraph.AxisType.Ordinal"/>.
            If the arrays are of different size, then the larger array prevails and the
            smaller array is padded with <see cref="F:ZedGraph.PointPairBase.Missing"/> values.
            </summary>
            <param name="x">A double[] array of X values</param>
            <param name="y">A double[] array of Y values</param>
            <returns>The zero-based ordinal index where the last point was added in the list,
            or -1 if no points were added.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Add(System.Double[],System.Double[],System.Double[])">
            <summary>
            Add a set of points to the <see cref="T:ZedGraph.PointPairList"/> from three arrays of type double.
            If the X or Y array is null, then a set of ordinal values is automatically
            generated in its place (see <see cref="F:ZedGraph.AxisType.Ordinal"/>.  If the <see paramref="baseVal"/>
            is null, then it is set to zero.
            If the arrays are of different size, then the larger array prevails and the
            smaller array is padded with <see cref="F:ZedGraph.PointPairBase.Missing"/> values.
            </summary>
            <param name="x">A double[] array of X values</param>
            <param name="y">A double[] array of Y values</param>
            <param name="z">A double[] array of Z or lower-dependent axis values</param>
            <returns>The zero-based ordinal index where the last point was added in the list,
            or -1 if no points were added.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Add(System.Double,System.Double)">
            <summary>
            Add a single point to the <see cref="T:ZedGraph.PointPairList"/> from values of type double.
            </summary>
            <param name="x">The X value</param>
            <param name="y">The Y value</param>
            <returns>The zero-based ordinal index where the point was added in the list.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Add(System.Double,System.Double,System.String)">
            <summary>
            Add a single point to the <see cref="T:ZedGraph.PointPairList"/> from values of type double.
            </summary>
            <param name="x">The X value</param>
            <param name="y">The Y value</param>
            <param name="tag">The Tag value for the PointPair</param>
            <returns>The zero-based ordinal index where the point was added in the list.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Add(System.Double,System.Double,System.Double)">
            <summary>
            Add a single point to the <see cref="T:ZedGraph.PointPairList"/> from values of type double.
            </summary>
            <param name="x">The X value</param>
            <param name="y">The Y value</param>
            <param name="z">The Z or lower dependent axis value</param>
            <returns>The zero-based ordinal index where the point was added
            in the list.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Add(System.Double,System.Double,System.Double,System.String)">
            <summary>
            Add a single point to the <see cref="T:ZedGraph.PointPairList"/> from values of type double.
            </summary>
            <param name="x">The X value</param>
            <param name="y">The Y value</param>
            <param name="z">The Z or lower dependent axis value</param>
            <param name="tag">The Tag value for the PointPair</param>
            <returns>The zero-based ordinal index where the point was added
            in the list.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Insert(System.Int32,ZedGraph.PointPair)">
            <summary>
            Add a <see cref="T:ZedGraph.PointPair"/> object to the collection at the specified,
            zero-based, index location.
            </summary>
            <param name="index">
            The zero-based ordinal index where the point is to be added in the list.
            </param>
            <param name="point">
            The <see cref="T:ZedGraph.PointPair"/> object to be added.
            </param>
        </member>
        <member name="M:ZedGraph.PointPairList.Insert(System.Int32,System.Double,System.Double)">
            <summary>
            Add a single point (from values of type double ) to the <see cref="T:ZedGraph.PointPairList"/> at the specified,
            zero-based, index location.
            </summary>
            <param name="index">
            The zero-based ordinal index where the point is to be added in the list.
            </param>
            <param name="x">The X value</param>
            <param name="y">The Y value</param>
        </member>
        <member name="M:ZedGraph.PointPairList.Insert(System.Int32,System.Double,System.Double,System.Double)">
            <summary>
            Add a single point (from values of type double ) to the <see cref="T:ZedGraph.PointPairList"/> at the specified,
            zero-based, index location.
            </summary>
            <param name="index">
            The zero-based ordinal index where the point is to be added in the list.
            </param>
            <param name="x">The X value</param>
            <param name="y">The Y value</param>
            <param name="z">The Z or lower dependent axis value</param>
        </member>
        <member name="M:ZedGraph.PointPairList.IndexOfTag(System.String)">
            <summary>
            Return the zero-based position index of the
            <see cref="T:ZedGraph.PointPair"/> with the specified label <see cref="F:ZedGraph.PointPair.Tag"/>.
            </summary>
            <remarks>The <see cref="F:ZedGraph.PointPair.Tag"/> object must be of type <see cref="T:System.String"/>
            for this method to find it.</remarks>
            <param name="label">The <see cref="T:System.String"/> label that is in the
            <see cref="F:ZedGraph.PointPair.Tag"/> attribute of the item to be found.
            </param>
            <returns>The zero-based index of the specified <see cref="T:ZedGraph.PointPair"/>,
            or -1 if the <see cref="T:ZedGraph.PointPair"/> is not in the list</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Equals(System.Object)">
            <summary>
            Compare two <see cref="T:ZedGraph.PointPairList"/> objects to see if they are equal.
            </summary>
            <remarks>Equality is based on equal count of <see cref="T:ZedGraph.PointPair"/> items, and
            each individual <see cref="T:ZedGraph.PointPair"/> must be equal (as per the
            <see cref="M:ZedGraph.PointPair.Equals(System.Object)"/> method.</remarks>
            <param name="obj">The <see cref="T:ZedGraph.PointPairList"/> to be compared with for equality.</param>
            <returns>true if the <see cref="T:ZedGraph.PointPairList"/> objects are equal, false otherwise.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.GetHashCode">
            <summary>
            Return the HashCode from the base class.
            </summary>
            <returns></returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Sort">
            <summary>
            Sorts the list according to the point x values. Will not sort the 
            list if the list is already sorted.
            </summary>
            <returns>If the list was sorted before sort was called</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.Sort(ZedGraph.SortType)">
             <summary>
             Sorts the list according to the point values . Will not sort the 
             list if the list is already sorted.
             </summary>
             <param name="type"></param>  The <see cref="T:ZedGraph.SortType"/>
            used to determine whether the X or Y values will be used to sort
            the list
             <returns>If the list was sorted before sort was called</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.SetX(System.Double[])">
            <summary>
            Set the X values for this <see cref="T:ZedGraph.PointPairList"/> from the specified
            array of double values.
            </summary>
            <remarks>
            If <see paramref="x"/> has more values than
            this list, then the extra values will be ignored.  If <see paramref="x"/>
            has less values, then the corresponding <see cref="T:ZedGraph.PointPairList"/> values
            will not be changed.  That is, if the <see cref="T:ZedGraph.PointPairList"/> has 20 values
            and <see paramref="x"/> has 15 values, then the first 15 values of the
            <see cref="T:ZedGraph.PointPairList"/> will be changed, and the last 5 values will not be
            changed.
            </remarks>
            <param name="x">An array of double values that will replace the existing X
            values in the <see cref="T:ZedGraph.PointPairList"/>.</param>
        </member>
        <member name="M:ZedGraph.PointPairList.SetY(System.Double[])">
            <summary>
            Set the Y values for this <see cref="T:ZedGraph.PointPairList"/> from the specified
            array of double values.
            </summary>
            <remarks>
            If <see paramref="y"/> has more values than
            this list, then the extra values will be ignored.  If <see paramref="y"/>
            has less values, then the corresponding <see cref="T:ZedGraph.PointPairList"/> values
            will not be changed.  That is, if the <see cref="T:ZedGraph.PointPairList"/> has 20 values
            and <see paramref="y"/> has 15 values, then the first 15 values of the
            <see cref="T:ZedGraph.PointPairList"/> will be changed, and the last 5 values will not be
            changed.
            </remarks>
            <param name="y">An array of double values that will replace the existing Y
            values in the <see cref="T:ZedGraph.PointPairList"/>.</param>
        </member>
        <member name="M:ZedGraph.PointPairList.SetZ(System.Double[])">
            <summary>
            Set the Z values for this <see cref="T:ZedGraph.PointPairList"/> from the specified
            array of double values.
            </summary>
            <remarks>
            If <see paramref="z"/> has more values than
            this list, then the extra values will be ignored.  If <see paramref="z"/>
            has less values, then the corresponding <see cref="T:ZedGraph.PointPairList"/> values
            will not be changed.  That is, if the <see cref="T:ZedGraph.PointPairList"/> has 20 values
            and <see paramref="z"/> has 15 values, then the first 15 values of the
            <see cref="T:ZedGraph.PointPairList"/> will be changed, and the last 5 values will not be
            changed.
            </remarks>
            <param name="z">An array of double values that will replace the existing Z
            values in the <see cref="T:ZedGraph.PointPairList"/>.</param>
        </member>
        <member name="M:ZedGraph.PointPairList.SumY(ZedGraph.PointPairList)">
            <summary>
            Add the Y values from the specified <see cref="T:ZedGraph.PointPairList"/> object to this
            <see cref="T:ZedGraph.PointPairList"/>.  If <see paramref="sumList"/> has more values than
            this list, then the extra values will be ignored.  If <see paramref="sumList"/>
            has less values, the missing values are assumed to be zero.
            </summary>
            <param name="sumList">A reference to the <see cref="T:ZedGraph.PointPairList"/> object to
            be summed into the this <see cref="T:ZedGraph.PointPairList"/>.</param>
        </member>
        <member name="M:ZedGraph.PointPairList.SumX(ZedGraph.PointPairList)">
            <summary>
            Add the X values from the specified <see cref="T:ZedGraph.PointPairList"/> object to this
            <see cref="T:ZedGraph.PointPairList"/>.  If <see paramref="sumList"/> has more values than
            this list, then the extra values will be ignored.  If <see paramref="sumList"/>
            has less values, the missing values are assumed to be zero.
            </summary>
            <param name="sumList">A reference to the <see cref="T:ZedGraph.PointPairList"/> object to
            be summed into the this <see cref="T:ZedGraph.PointPairList"/>.</param>
        </member>
        <member name="M:ZedGraph.PointPairList.InterpolateX(System.Double)">
            <summary>
            Linearly interpolate the data to find an arbitraty Y value that corresponds to the specified X value.
            </summary>
            <remarks>
            This method uses linear interpolation with a binary search algorithm.  It therefore
            requires that the x data be monotonically increasing.  Missing values are not allowed.  This
            method will extrapolate outside the range of the PointPairList if necessary.
            </remarks>
            <param name="xTarget">The target X value on which to interpolate</param>
            <returns>The Y value that corresponds to the <see paramref="xTarget"/> value.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.SplineInterpolateX(System.Double,System.Double)">
            <summary>
            Use Cardinal Splines to Interpolate the data to find an arbitraty Y value that corresponds to
            the specified X value.
            </summary>
            <remarks>
            This method uses cardinal spline interpolation with a binary search algorithm.  It therefore
            requires that the x data be monotonically increasing.  Missing values are not allowed.  This
            method will not extrapolate outside the range of the PointPairList (it returns
            <see cref="F:ZedGraph.PointPairBase.Missing"/> if extrapolation would be required).  WARNING: Cardinal
            spline interpolation can generate curves with non-unique X values for higher tension
            settings.  That is, there may be multiple X values for the same Y value.  This routine
            follows the path of the spline curve until it reaches the FIRST OCCURRENCE of the
            target X value.  It does not check to see if other solutions are possible.
            </remarks>
            <param name="xTarget">The target X value on which to interpolate</param>
            <param name="tension">The tension setting that controls the curvature of the spline fit.
            Typical values are between 0 and 1, where 0 is a linear fit, and 1 is lots of "roundness".
            Values greater than 1 may give odd results.
            </param>
            <returns>The Y value that corresponds to the <see paramref="xTarget"/> value.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.InterpolateY(System.Double)">
            <summary>
            Linearly interpolate the data to find an arbitraty X value that corresponds to the specified Y value.
            </summary>
            <remarks>
            This method uses linear interpolation with a binary search algorithm.  It therefore
            requires that the Y data be monotonically increasing.  Missing values are not allowed.  This
            method will extrapolate outside the range of the PointPairList if necessary.
            </remarks>
            <param name="yTarget">The target Y value on which to interpolate</param>
            <returns>The X value that corresponds to the <see paramref="yTarget"/> value.</returns>
        </member>
        <member name="M:ZedGraph.PointPairList.LinearRegression(ZedGraph.IPointList,System.Int32)">
            <summary>
            Use linear regression to form a least squares fit of an existing
            <see cref="T:ZedGraph.IPointList"/> instance.
            </summary>
            <remarks>The output <see cref="T:ZedGraph.PointPairList"/> will cover the
            same X range of data as the original dataset.
            </remarks>
            <param name="points">An <see cref="T:ZedGraph.IPointList"/> instance containing
            the data to be regressed.</param>
            <param name="pointCount">The number of desired points to be included
            in the resultant <see cref="T:ZedGraph.PointPairList"/>.
            </param>
            <returns>A new <see cref="T:ZedGraph.PointPairList"/> containing the resultant
            data fit.
            </returns>
        </member>
        <member name="M:ZedGraph.PointPairList.LinearRegression(ZedGraph.IPointList,System.Int32,System.Double,System.Double)">
            <summary>
            Use linear regression to form a least squares fit of an existing
            <see cref="T:ZedGraph.IPointList"/> instance.
            </summary>
            <param name="points">An <see cref="T:ZedGraph.IPointList"/> instance containing
            the data to be regressed.</param>
            <param name="pointCount">The number of desired points to be included
            in the resultant <see cref="T:ZedGraph.PointPairList"/>.
            </param>
            <param name="minX">The minimum X value of the resultant
            <see cref="T:ZedGraph.PointPairList"/>.</param>
            <param name="maxX">The maximum X value of the resultant
            <see cref="T:ZedGraph.PointPairList"/>.</param>
            <returns>A new <see cref="T:ZedGraph.PointPairList"/> containing the resultant
            data fit.
            </returns>
            <author> Brian Chappell - lazarusds
                     modified by John Champion</author>
        </member>
        <member name="P:ZedGraph.PointPairList.Sorted">
            <summary>
            true if the list is currently sorted.
            </summary>
            <seealso cref="M:ZedGraph.PointPairList.Sort"/>
        </member>
        <member name="T:ZedGraph.PointPairBase">
            <summary>
            This is a base class that provides base-level functionality for a data point consisting
            of an (X,Y) pair of double values.
            </summary>
            <remarks>
            This class is typically a base class for actual <see cref="T:ZedGraph.PointPair"/> type implementations.
            </remarks>
            
            <author> Jerry Vos modified by John Champion </author>
            <version> $Revision: 1.3 $ $Date: 2007/02/19 08:05:24 $ </version>
        </member>
        <member name="F:ZedGraph.PointPairBase.Missing">
            <summary>
            Missing values are represented internally using <see cref="F:System.Double.MaxValue"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.PointPairBase.DefaultFormat">
            <summary>
            The default format to be used for displaying point values via the
            <see cref="M:ZedGraph.PointPairBase.ToString"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.PointPairBase.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.PointPairBase.X">
            <summary>
            This PointPair's X coordinate
            </summary>
        </member>
        <member name="F:ZedGraph.PointPairBase.Y">
            <summary>
            This PointPair's Y coordinate
            </summary>
        </member>
        <member name="M:ZedGraph.PointPairBase.#ctor">
            <summary>
            Default Constructor
            </summary>
        </member>
        <member name="M:ZedGraph.PointPairBase.#ctor(System.Double,System.Double)">
            <summary>
            Creates a point pair with the specified X and Y.
            </summary>
            <param name="x">This pair's x coordinate.</param>
            <param name="y">This pair's y coordinate.</param>
        </member>
        <member name="M:ZedGraph.PointPairBase.#ctor(System.Drawing.PointF)">
            <summary>
            Creates a point pair from the specified <see cref="T:System.Drawing.PointF"/> struct.
            </summary>
            <param name="pt">The <see cref="T:System.Drawing.PointF"/> struct from which to get the
            new <see cref="T:ZedGraph.PointPair"/> values.</param>
        </member>
        <member name="M:ZedGraph.PointPairBase.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.PointPairBase.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.PointPairBase.IsValueInvalid(System.Double)">
            <summary>
            static method to determine if the specified point value is invalid.
            </summary>
            <remarks>The value is considered invalid if it is <see cref="F:ZedGraph.PointPairBase.Missing"/>,
            <see cref="F:System.Double.PositiveInfinity"/>, <see cref="F:System.Double.NegativeInfinity"/>
            or <see cref="F:System.Double.NaN"/>.</remarks>
            <param name="value">The value to be checked for validity.</param>
            <returns>true if the value is invalid, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.PointPairBase.op_Implicit(ZedGraph.PointPairBase)~System.Drawing.PointF">
            <summary>
            Implicit conversion from PointPair to PointF.  Note that this conversion
            can result in data loss, since the data are being cast from a type
            double (64 bit) to a float (32 bit).
            </summary>
            <param name="pair">The PointPair struct on which to operate</param>
            <returns>A PointF struct equivalent to the PointPair</returns>
        </member>
        <member name="M:ZedGraph.PointPairBase.Equals(System.Object)">
            <summary>
            Compare two <see cref="T:ZedGraph.PointPairBase"/> objects for equality.  To be equal, X and Y
            must be exactly the same between the two objects.
            </summary>
            <param name="obj">The <see cref="T:ZedGraph.PointPairBase"/> object to be compared with.</param>
            <returns>true if the <see cref="T:ZedGraph.PointPairBase"/> objects are equal, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.PointPairBase.GetHashCode">
            <summary>
            Return the HashCode from the base class.
            </summary>
            <returns></returns>
        </member>
        <member name="M:ZedGraph.PointPairBase.ToString">
            <summary>
            Format this PointPair value using the default format.  Example:  "( 12.345, -16.876 )".
            The two double values are formatted with the "g" format type.
            </summary>
            <returns>A string representation of the PointPair</returns>
        </member>
        <member name="M:ZedGraph.PointPairBase.ToString(System.String)">
            <summary>
            Format this PointPair value using a general format string.
            Example:  a format string of "e2" would give "( 1.23e+001, -1.69e+001 )".
            </summary>
            <param name="format">A format string that will be used to format each of
            the two double type values (see <see cref="M:System.Double.ToString"/>).</param>
            <returns>A string representation of the PointPair</returns>
        </member>
        <member name="M:ZedGraph.PointPairBase.ToString(System.String,System.String)">
            <summary>
            Format this PointPair value using different general format strings for the X and Y values.
            Example:  a format string of "e2" would give "( 1.23e+001, -1.69e+001 )".
            The Z value is not displayed (see <see cref="M:ZedGraph.PointPair.ToString(System.String,System.String,System.String)"/>).
            </summary>
            <param name="formatX">A format string that will be used to format the X
            double type value (see <see cref="M:System.Double.ToString"/>).</param>
            <param name="formatY">A format string that will be used to format the Y
            double type value (see <see cref="M:System.Double.ToString"/>).</param>
            <returns>A string representation of the PointPair</returns>
        </member>
        <member name="P:ZedGraph.PointPairBase.IsMissing">
            <summary>
            Readonly value that determines if either the X or the Y
            coordinate in this PointPair is a missing value.
            </summary>
            <returns>true if either value is missing</returns>
        </member>
        <member name="P:ZedGraph.PointPairBase.IsInvalid">
            <summary>
            Readonly value that determines if either the X or the Y
            coordinate in this PointPair is an invalid (not plotable) value.
            It is considered invalid if it is missing (equal to System.Double.Max),
            Infinity, or NaN.
            </summary>
            <returns>true if either value is invalid</returns>
        </member>
        <member name="T:ZedGraph.PointPair4">
            <summary>
            The basic <see cref="T:ZedGraph.PointPair"/> class holds three data values (X, Y, Z).  This
            class extends the basic PointPair to contain four data values (X, Y, Z, T).
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.3 $ $Date: 2007/03/17 18:43:44 $ </version>
        </member>
        <member name="T:ZedGraph.PointPair">
            <summary>
            A simple point represented by an (X,Y,Z) group of double values.
            </summary>
            
            <author> Jerry Vos modified by John Champion </author>
            <version> $Revision: 3.24 $ $Date: 2007/03/17 18:43:44 $ </version>
        </member>
        <member name="F:ZedGraph.PointPair.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.PointPair.Z">
            <summary>
            This PointPair's Z coordinate.  Also used for the lower value (dependent axis)
            for <see cref="T:ZedGraph.HiLowBarItem"/> and <see cref="T:ZedGraph.ErrorBarItem"/> charts.
            </summary>
        </member>
        <member name="F:ZedGraph.PointPair.Tag">
            <summary>
            A tag object for use by the user.  This can be used to store additional
            information associated with the <see cref="T:ZedGraph.PointPair"/>.  ZedGraph never
            modifies this value, but if it is a <see cref="T:System.String"/> type, it
            may be displayed in a <see cref="T:System.Windows.Forms.ToolTip"/>
            within the <see cref="T:ZedGraph.ZedGraphControl"/> object.
            </summary>
            <remarks>
            Note that, if you are going to Serialize ZedGraph data, then any type
            that you store in <see cref="F:ZedGraph.PointPair.Tag"/> must be a serializable type (or
            it will cause an exception).
            </remarks>
        </member>
        <member name="M:ZedGraph.PointPair.#ctor">
            <summary>
            Default Constructor
            </summary>
        </member>
        <member name="M:ZedGraph.PointPair.#ctor(System.Double,System.Double)">
            <summary>
            Creates a point pair with the specified X and Y.
            </summary>
            <param name="x">This pair's x coordinate.</param>
            <param name="y">This pair's y coordinate.</param>
        </member>
        <member name="M:ZedGraph.PointPair.#ctor(System.Double,System.Double,System.String)">
            <summary>
            Creates a point pair with the specified X, Y, and
            label (<see cref="F:ZedGraph.PointPair.Tag"/>).
            </summary>
            <param name="x">This pair's x coordinate.</param>
            <param name="y">This pair's y coordinate.</param>
            <param name="label">This pair's string label (<see cref="F:ZedGraph.PointPair.Tag"/>)</param>
        </member>
        <member name="M:ZedGraph.PointPair.#ctor(System.Double,System.Double,System.Double)">
            <summary>
            Creates a point pair with the specified X, Y, and base value.
            </summary>
            <param name="x">This pair's x coordinate.</param>
            <param name="y">This pair's y coordinate.</param>
            <param name="z">This pair's z or lower dependent coordinate.</param>
        </member>
        <member name="M:ZedGraph.PointPair.#ctor(System.Double,System.Double,System.Double,System.String)">
            <summary>
            Creates a point pair with the specified X, Y, base value, and
            string label (<see cref="F:ZedGraph.PointPair.Tag"/>).
            </summary>
            <param name="x">This pair's x coordinate.</param>
            <param name="y">This pair's y coordinate.</param>
            <param name="z">This pair's z or lower dependent coordinate.</param>
            <param name="label">This pair's string label (<see cref="F:ZedGraph.PointPair.Tag"/>)</param>
        </member>
        <member name="M:ZedGraph.PointPair.#ctor(System.Double,System.Double,System.Double,System.Object)">
            <summary>
            Creates a point pair with the specified X, Y, base value, and
            (<see cref="F:ZedGraph.PointPair.Tag"/>).
            </summary>
            <param name="x">This pair's x coordinate.</param>
            <param name="y">This pair's y coordinate.</param>
            <param name="z">This pair's z or lower dependent coordinate.</param>
            <param name="tag">This pair's <see cref="F:ZedGraph.PointPair.Tag"/> property</param>
        </member>
        <member name="M:ZedGraph.PointPair.#ctor(System.Drawing.PointF)">
            <summary>
            Creates a point pair from the specified <see cref="T:System.Drawing.PointF"/> struct.
            </summary>
            <param name="pt">The <see cref="T:System.Drawing.PointF"/> struct from which to get the
            new <see cref="T:ZedGraph.PointPair"/> values.</param>
        </member>
        <member name="M:ZedGraph.PointPair.#ctor(ZedGraph.PointPair)">
            <summary>
            The PointPair copy constructor.
            </summary>
            <param name="rhs">The basis for the copy.</param>
        </member>
        <member name="M:ZedGraph.PointPair.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.PointPair.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.PointPair.Equals(System.Object)">
            <summary>
            Compare two <see cref="T:ZedGraph.PointPair"/> objects for equality.  To be equal, X, Y, and Z
            must be exactly the same between the two objects.
            </summary>
            <param name="obj">The <see cref="T:ZedGraph.PointPair"/> object to be compared with.</param>
            <returns>true if the <see cref="T:ZedGraph.PointPair"/> objects are equal, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.PointPair.GetHashCode">
            <summary>
            Return the HashCode from the base class.
            </summary>
            <returns></returns>
        </member>
        <member name="M:ZedGraph.PointPair.ToString(System.Boolean)">
            <summary>
            Format this PointPair value using the default format.  Example:  "( 12.345, -16.876 )".
            The two double values are formatted with the "g" format type.
            </summary>
            <param name="isShowZ">true to show the third "Z" or low dependent value coordinate</param>
            <returns>A string representation of the PointPair</returns>
        </member>
        <member name="M:ZedGraph.PointPair.ToString(System.String,System.Boolean)">
            <summary>
            Format this PointPair value using a general format string.
            Example:  a format string of "e2" would give "( 1.23e+001, -1.69e+001 )".
            If <see paramref="isShowZ"/>
            is true, then the third "Z" coordinate is also shown.
            </summary>
            <param name="format">A format string that will be used to format each of
            the two double type values (see <see cref="M:System.Double.ToString"/>).</param>
            <returns>A string representation of the PointPair</returns>
            <param name="isShowZ">true to show the third "Z" or low dependent value coordinate</param>
        </member>
        <member name="M:ZedGraph.PointPair.ToString(System.String,System.String,System.String)">
            <summary>
            Format this PointPair value using different general format strings for the X, Y, and Z values.
            Example:  a format string of "e2" would give "( 1.23e+001, -1.69e+001 )".
            </summary>
            <param name="formatX">A format string that will be used to format the X
            double type value (see <see cref="M:System.Double.ToString"/>).</param>
            <param name="formatY">A format string that will be used to format the Y
            double type value (see <see cref="M:System.Double.ToString"/>).</param>
            <param name="formatZ">A format string that will be used to format the Z
            double type value (see <see cref="M:System.Double.ToString"/>).</param>
            <returns>A string representation of the PointPair</returns>
        </member>
        <member name="P:ZedGraph.PointPair.IsInvalid3D">
            <summary>
            Readonly value that determines if either the X, Y, or Z
            coordinate in this PointPair is an invalid (not plotable) value.
            It is considered invalid if it is missing (equal to System.Double.Max),
            Infinity, or NaN.
            </summary>
            <returns>true if any value is invalid</returns>
        </member>
        <member name="P:ZedGraph.PointPair.LowValue">
            <summary>
            The "low" value for this point (lower dependent-axis value).
            This is really just an alias for <see cref="F:ZedGraph.PointPair.Z"/>.
            </summary>
            <value>The lower dependent value for this <see cref="T:ZedGraph.PointPair"/>.</value>
        </member>
        <member name="P:ZedGraph.PointPair.ColorValue">
            <summary>
            The ColorValue property is just an alias for the <see cref="F:ZedGraph.PointPair.Z"/>
            property.
            </summary>
            <remarks>
            For other types, such as the <see cref="T:ZedGraph.StockPt"/>, the <see cref="T:ZedGraph.StockPt"/>
            can be mapped to a unique value.  This is used with the
            <see cref="F:ZedGraph.FillType.GradientByColorValue"/> option.
            </remarks>
        </member>
        <member name="T:ZedGraph.PointPair.PointPairComparerY">
            <summary>
            Compares points based on their y values.  Is setup to be used in an
            ascending order sort.
            <seealso cref="M:System.Collections.ArrayList.Sort"/>
            </summary>
        </member>
        <member name="M:ZedGraph.PointPair.PointPairComparerY.Compare(ZedGraph.PointPair,ZedGraph.PointPair)">
            <summary>
            Compares two <see cref="T:ZedGraph.PointPair"/>s.
            </summary>
            <param name="l">Point to the left.</param>
            <param name="r">Point to the right.</param>
            <returns>-1, 0, or 1 depending on l.Y's relation to r.Y</returns>
        </member>
        <member name="T:ZedGraph.PointPair.PointPairComparer">
            <summary>
            Compares points based on their x values.  Is setup to be used in an
            ascending order sort.
            <seealso cref="M:System.Collections.ArrayList.Sort"/>
            </summary>
        </member>
        <member name="M:ZedGraph.PointPair.PointPairComparer.#ctor(ZedGraph.SortType)">
            <summary>
            Constructor for PointPairComparer.
            </summary>
            <param name="type">The axis type on which to sort.</param>
        </member>
        <member name="M:ZedGraph.PointPair.PointPairComparer.Compare(ZedGraph.PointPair,ZedGraph.PointPair)">
            <summary>
            Compares two <see cref="T:ZedGraph.PointPair"/>s.
            </summary>
            <param name="l">Point to the left.</param>
            <param name="r">Point to the right.</param>
            <returns>-1, 0, or 1 depending on l.X's relation to r.X</returns>
        </member>
        <member name="F:ZedGraph.PointPair4.schema3">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.PointPair4.T">
            <summary>
            This PointPair4's T coordinate.
            </summary>
        </member>
        <member name="M:ZedGraph.PointPair4.#ctor">
            <summary>
            Default Constructor
            </summary>
        </member>
        <member name="M:ZedGraph.PointPair4.#ctor(System.Double,System.Double,System.Double,System.Double)">
            <summary>
            Creates a point pair with the specified X, Y, Z, and T value.
            </summary>
            <param name="x">This pair's x coordinate.</param>
            <param name="y">This pair's y coordinate.</param>
            <param name="z">This pair's z coordinate.</param>
            <param name="t">This pair's t coordinate.</param>
        </member>
        <member name="M:ZedGraph.PointPair4.#ctor(System.Double,System.Double,System.Double,System.Double,System.String)">
            <summary>
            Creates a point pair with the specified X, Y, base value, and
            label (<see cref="F:ZedGraph.PointPair.Tag"/>).
            </summary>
            <param name="x">This pair's x coordinate.</param>
            <param name="y">This pair's y coordinate.</param>
            <param name="z">This pair's z coordinate.</param>
            <param name="t">This pair's t coordinate.</param>
            <param name="label">This pair's string label (<see cref="F:ZedGraph.PointPair.Tag"/>)</param>
        </member>
        <member name="M:ZedGraph.PointPair4.#ctor(ZedGraph.PointPair4)">
            <summary>
            The PointPair4 copy constructor.
            </summary>
            <param name="rhs">The basis for the copy.</param>
        </member>
        <member name="M:ZedGraph.PointPair4.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.PointPair4.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.PointPair4.ToString(System.Boolean)">
            <summary>
            Format this PointPair4 value using the default format.  Example:  "( 12.345, -16.876 )".
            The two double values are formatted with the "g" format type.
            </summary>
            <param name="isShowZT">true to show the third "Z" and fourth "T" value coordinates</param>
            <returns>A string representation of the PointPair4</returns>
        </member>
        <member name="M:ZedGraph.PointPair4.ToString(System.String,System.Boolean)">
            <summary>
            Format this PointPair value using a general format string.
            Example:  a format string of "e2" would give "( 1.23e+001, -1.69e+001 )".
            If <see paramref="isShowZ"/>
            is true, then the third "Z" coordinate is also shown.
            </summary>
            <param name="format">A format string that will be used to format each of
            the two double type values (see <see cref="M:System.Double.ToString"/>).</param>
            <returns>A string representation of the PointPair</returns>
            <param name="isShowZT">true to show the third "Z" or low dependent value coordinate</param>
        </member>
        <member name="M:ZedGraph.PointPair4.ToString(System.String,System.String,System.String,System.String)">
            <summary>
            Format this PointPair value using different general format strings for the X, Y, and Z values.
            Example:  a format string of "e2" would give "( 1.23e+001, -1.69e+001 )".
            </summary>
            <param name="formatX">A format string that will be used to format the X
            double type value (see <see cref="M:System.Double.ToString"/>).</param>
            <param name="formatY">A format string that will be used to format the Y
            double type value (see <see cref="M:System.Double.ToString"/>).</param>
            <param name="formatZ">A format string that will be used to format the Z
            double type value (see <see cref="M:System.Double.ToString"/>).</param>
            <param name="formatT">A format string that will be used to format the T
            double type value (see <see cref="M:System.Double.ToString"/>).</param>
            <returns>A string representation of the PointPair</returns>
        </member>
        <member name="P:ZedGraph.PointPair4.IsInvalid4D">
            <summary>
            Readonly value that determines if either the X, Y, Z, or T
            coordinate in this PointPair4 is an invalid (not plotable) value.
            It is considered invalid if it is missing (equal to System.Double.Max),
            Infinity, or NaN.
            </summary>
            <returns>true if any value is invalid</returns>
        </member>
        <member name="T:ZedGraph.DataPoint">
            <summary>
            A simple storage struct to maintain an individual sampling of data.  This only
            contains two data values in order to reduce to memory load for large datasets.
            (e.g., no Tag or Z property)
            </summary>
        </member>
        <member name="F:ZedGraph.DataPoint.X">
            <summary>
            The X value for the point, stored as a double type.
            </summary>
        </member>
        <member name="F:ZedGraph.DataPoint.Y">
            <summary>
            The Y value for the point, stored as a double type.
            </summary>
        </member>
        <member name="T:ZedGraph.NoDupePointList">
            <summary>
            A collection class to maintain a set of samples.
            </summary>
            <remarks>This type, intended for very
            large datasets, will reduce the number of points displayed by eliminating
            individual points that overlay (at the same pixel location) on the graph.
            Note that this type probably does not make sense for line plots, but is intended
            primarily for scatter plots.
            </remarks>
            
            <author> John Champion </author>
            <version> $Revision: 3.3 $ $Date: 2007/02/18 05:51:54 $ </version>
        </member>
        <member name="F:ZedGraph.NoDupePointList._isFiltered">
            <summary>
            Protected field that stores a value indicating whether or not the data have been filtered.
            If the data have not been filtered, then <see cref="P:ZedGraph.NoDupePointList.Count"/> will be equal to
            <see cref="P:ZedGraph.NoDupePointList.TotalCount"/>.  Use the public property <see cref="P:ZedGraph.NoDupePointList.IsFiltered"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.NoDupePointList._filteredCount">
            <summary>
            Protected field that stores the number of data points after filtering (e.g.,
            <see cref="M:ZedGraph.NoDupePointList.FilterData(ZedGraph.GraphPane,ZedGraph.Axis)"/> has been called).  The <see cref="P:ZedGraph.NoDupePointList.Count"/> property
            returns the total count for an unfiltered dataset, or <see cref="F:ZedGraph.NoDupePointList._filteredCount"/>
            for a dataset that has been filtered.
            </summary>
        </member>
        <member name="F:ZedGraph.NoDupePointList._visibleIndicies">
            <summary>
            Protected array of indices for all the points that are currently visible.  This only
            applies if <see cref="P:ZedGraph.NoDupePointList.IsFiltered"/> is true.
            </summary>
        </member>
        <member name="F:ZedGraph.NoDupePointList._filterMode">
            <summary>
            Protected field that stores a value that determines how close a point must be to a prior
            neighbor in order to be filtered out.  Use the public property <see cref="P:ZedGraph.NoDupePointList.FilterMode"/>
            to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.NoDupePointList.Add(ZedGraph.PointPair)">
            <summary>
            Append a data point to the collection
            </summary>
            <param name="pt">The <see cref="T:ZedGraph.PointPair"/> value to append</param>
        </member>
        <member name="M:ZedGraph.NoDupePointList.Add(System.Double,System.Double)">
            <summary>
            Append a point to the collection
            </summary>
            <param name="x">The x value of the point to append</param>
            <param name="y">The y value of the point to append</param>
        </member>
        <member name="M:ZedGraph.NoDupePointList.Clone">
            <summary>
            typesafe clone method
            </summary>
            <returns>A new cloned NoDupePointList.  This returns a copy of the structure,
            but it does not duplicate the data (it just keeps a reference to the original)
            </returns>
        </member>
        <member name="M:ZedGraph.NoDupePointList.#ctor">
            <summary>
            default constructor
            </summary>
        </member>
        <member name="M:ZedGraph.NoDupePointList.#ctor(ZedGraph.NoDupePointList)">
            <summary>
            copy constructor -- this returns a copy of the structure,
            but it does not duplicate the data (it just keeps a reference to the original)
            </summary>
            <param name="rhs">The NoDupePointList to be copied</param>
        </member>
        <member name="M:ZedGraph.NoDupePointList.GetDataPointAt(System.Int32)">
            <summary>
            Protected method to access the internal DataPoint collection, without any
            translation to a PointPair.
            </summary>
            <param name="index">The ordinal position of the DataPoint of interest</param>
        </member>
        <member name="M:ZedGraph.NoDupePointList.ClearFilter">
            <summary>
            Clears any filtering previously done by a call to <see cref="M:ZedGraph.NoDupePointList.FilterData(ZedGraph.GraphPane,ZedGraph.Axis)"/>.
            After calling this method, all data points will be visible, and
            <see cref="P:ZedGraph.NoDupePointList.Count"/> will be equal to <see cref="P:ZedGraph.NoDupePointList.TotalCount"/>.
            </summary>
        </member>
        <member name="M:ZedGraph.NoDupePointList.FilterData(ZedGraph.GraphPane,ZedGraph.Axis)">
            <summary>
            Go through the collection, and hide (filter out) any points that fall on the
            same pixel location as a previously included point.
            </summary>
            <remarks>
            This method does not delete any points, it just temporarily hides them until
            the next call to <see cref="M:ZedGraph.NoDupePointList.FilterData(ZedGraph.GraphPane,ZedGraph.Axis)"/> or <see cref="M:ZedGraph.NoDupePointList.ClearFilter"/>.
            You should call <see cref="M:ZedGraph.NoDupePointList.FilterData(ZedGraph.GraphPane,ZedGraph.Axis)"/> once your collection of points has
            been constructed.  You may need to call <see cref="M:ZedGraph.NoDupePointList.FilterData(ZedGraph.GraphPane,ZedGraph.Axis)"/> again if
            you add points, or if the chart rect changes size (by resizing, printing,
            image save, etc.), or if the scale range changes.
            You must call <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/> before calling
            this method so that the <see cref="P:ZedGraph.Chart.Rect">GraphPane.Chart.Rect</see>
            and the scale ranges are valid.  This method is not valid for
            ordinal axes (but ordinal axes don't make sense for very large datasets
            anyway).
            </remarks>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> into which the data
            will be plotted. </param>
            <param name="yAxis">The <see cref="T:ZedGraph.Axis"/> class to be used in the Y direction
            for plotting these data.  This can be a <see cref="T:ZedGraph.YAxis"/> or a 
            <see cref="T:ZedGraph.Y2Axis"/>, and can be a primary or secondary axis (if multiple Y or Y2
            axes are being used).
            </param>
        </member>
        <member name="P:ZedGraph.NoDupePointList.FilterMode">
            <summary>
            Gets or sets a value that determines how close a point must be to a prior
            neighbor in order to be filtered out.
            </summary>
            <remarks>
            A value of 0 indicates that subsequent
            points must coincide exactly at the same pixel location.  A value of 1 or more
            indicates that number of pixels distance from a prior point that will cause
            a new point to be filtered out.  For example, a value of 2 means that, once
            a particular pixel location is taken, any subsequent point that lies within 2
            pixels of that location will be filtered out.
            </remarks>
        </member>
        <member name="P:ZedGraph.NoDupePointList.IsFiltered">
            <summary>
            Gets a value indicating whether or not the data have been filtered.  If the data
            have not been filtered, then <see cref="P:ZedGraph.NoDupePointList.Count"/> will be equal to
            <see cref="P:ZedGraph.NoDupePointList.TotalCount"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.NoDupePointList.Item(System.Int32)">
            <summary>
            Indexer: get the DataPoint instance at the specified ordinal position in the list
            </summary>
            <remarks>
            This method will throw an exception if the index is out of range.  This can happen
            if the index is less than the number of filtered values, or if data points are
            removed from a filtered dataset with updating the filter (by calling
            <see cref="M:ZedGraph.NoDupePointList.FilterData(ZedGraph.GraphPane,ZedGraph.Axis)"/>).
            </remarks>
            <param name="index">The ordinal position in the list of points</param>
            <returns>Returns a <see cref="T:ZedGraph.PointPair"/> instance.  The <see cref="F:ZedGraph.PointPair.Z"/>
            and <see cref="F:ZedGraph.PointPair.Tag"/> properties will be defaulted to
            <see cref="F:ZedGraph.PointPairBase.Missing"/> and null, respectively.
            </returns>
        </member>
        <member name="P:ZedGraph.NoDupePointList.Count">
            <summary>
            Gets the number of active samples in the collection.  This is the number of
            samples that are non-duplicates.  See the <see cref="P:ZedGraph.NoDupePointList.TotalCount"/> property
            to get the total number of samples in the list.
            </summary>
        </member>
        <member name="P:ZedGraph.NoDupePointList.TotalCount">
            <summary>
            Gets the total number of samples in the collection.  See the <see cref="P:ZedGraph.NoDupePointList.Count"/>
            property to get the number of active (non-duplicate) samples in the list.
            </summary>
        </member>
        <member name="T:ZedGraph.ColorSymbolRotator">
            <summary>
            Class used to get the next color/symbol for GraphPane.AddCurve methods.
            </summary>
            
            <author> Jerry Vos modified by John Champion </author>
            <version> $Revision: 3.4 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="F:ZedGraph.ColorSymbolRotator.COLORS">
            <summary>
            The <see cref="T:System.Drawing.Color"/>s <see cref="T:ZedGraph.ColorSymbolRotator"/> 
            rotates through.
            </summary>
        </member>
        <member name="F:ZedGraph.ColorSymbolRotator.SYMBOLS">
            <summary>
            The <see cref="T:ZedGraph.SymbolType"/>s <see cref="T:ZedGraph.ColorSymbolRotator"/> 
            rotates through.
            </summary>
        </member>
        <member name="F:ZedGraph.ColorSymbolRotator.colorIndex">
            <summary>
            The index of the next color to be used. Note: may be 
            > COLORS.Length, it is reset to 0 on the next call if it is.
            </summary>
        </member>
        <member name="F:ZedGraph.ColorSymbolRotator.symbolIndex">
            <summary>
            The index of the next symbol to be used. Note: may be 
            > SYMBOLS.Length, it is reset to 0 on the next call if it is.
            </summary>
        </member>
        <member name="P:ZedGraph.ColorSymbolRotator.NextColor">
            <summary>
            Retrieves the next color in the rotation  Calling this
            method has the side effect of incrementing the color index.
            <seealso cref="P:ZedGraph.ColorSymbolRotator.NextSymbol"/>
            <seealso cref="P:ZedGraph.ColorSymbolRotator.NextColorIndex"/>
            </summary>
        </member>
        <member name="P:ZedGraph.ColorSymbolRotator.NextColorIndex">
            <summary>
            Retrieves the index of the next color to be used.  Calling this
            method has the side effect of incrementing the color index.
            </summary>
        </member>
        <member name="P:ZedGraph.ColorSymbolRotator.NextSymbol">
            <summary>
            Retrieves the next color in the rotation.  Calling this
            method has the side effect of incrementing the symbol index.
            <seealso cref="P:ZedGraph.ColorSymbolRotator.NextColor"/>
            <seealso cref="P:ZedGraph.ColorSymbolRotator.NextSymbolIndex"/>
            </summary>
        </member>
        <member name="P:ZedGraph.ColorSymbolRotator.NextSymbolIndex">
            <summary>
            Retrieves the index of the next symbol to be used.  Calling this
            method has the side effect of incrementing the symbol index.
            </summary>
        </member>
        <member name="P:ZedGraph.ColorSymbolRotator.StaticInstance">
            <summary>
            Retrieves the <see cref="T:ZedGraph.ColorSymbolRotator"/> instance used by the
            static methods.
            <seealso cref="P:ZedGraph.ColorSymbolRotator.StaticNextColor"/>
            <seealso cref="P:ZedGraph.ColorSymbolRotator.StaticNextSymbol"/>
            </summary>
        </member>
        <member name="P:ZedGraph.ColorSymbolRotator.StaticNextColor">
            <summary>
            Retrieves the next color from this class's static 
            <see cref="T:ZedGraph.ColorSymbolRotator"/> instance
            <seealso cref="P:ZedGraph.ColorSymbolRotator.StaticInstance"/>
            <seealso cref="P:ZedGraph.ColorSymbolRotator.StaticNextSymbol"/>
            </summary>
        </member>
        <member name="P:ZedGraph.ColorSymbolRotator.StaticNextSymbol">
            <summary>
            Retrieves the next symbol type from this class's static 
            <see cref="T:ZedGraph.ColorSymbolRotator"/> instance
            <seealso cref="P:ZedGraph.ColorSymbolRotator.StaticInstance"/>
            <seealso cref="P:ZedGraph.ColorSymbolRotator.StaticNextColor"/>
            </summary>
        </member>
        <member name="T:ZedGraph.Chart">
            <summary>
            Class that handles the properties of the charting area (where the curves are
            actually drawn), which is bounded by the <see cref="T:ZedGraph.XAxis"/>, <see cref="T:ZedGraph.YAxis"/>,
            and <see cref="T:ZedGraph.Y2Axis"/>.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="F:ZedGraph.Chart.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Chart._rect">
            <summary>
            The rectangle that contains the area bounded by the axes, in pixel units
            </summary>
        </member>
        <member name="F:ZedGraph.Chart._fill">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.Chart"/>.  Use the public property <see cref="P:ZedGraph.Chart.Fill"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Chart._border">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Border"/> data for this
            <see cref="T:ZedGraph.Chart"/>.  Use the public property <see cref="P:ZedGraph.Chart.Border"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Chart._isRectAuto">
            <summary>Private field that determines if the <see cref="P:ZedGraph.Chart.Rect"/> will be
            sized automatically.  Use the public property <see cref="P:ZedGraph.Chart.IsRectAuto"/> to access
            this value. </summary>
        </member>
        <member name="M:ZedGraph.Chart.#ctor">
            <summary>
            Default constructor.
            </summary>
        </member>
        <member name="M:ZedGraph.Chart.#ctor(ZedGraph.Chart)">
            <summary>
            Copy constructor
            </summary>
            <param name="rhs">The source <see cref="T:ZedGraph.Chart"/> to be copied.</param>
        </member>
        <member name="M:ZedGraph.Chart.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Chart.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Chart.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Chart.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Chart.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.Chart.Rect">
            <summary>
            Gets or sets the rectangle that contains the area bounded by the axes
            (<see cref="T:ZedGraph.XAxis"/>, <see cref="T:ZedGraph.YAxis"/>, and <see cref="T:ZedGraph.Y2Axis"/>).
            If you set this value manually, then the <see cref="P:ZedGraph.Chart.IsRectAuto"/>
            value will automatically be set to false.
            </summary>
            <value>The rectangle units are in screen pixels</value>
        </member>
        <member name="P:ZedGraph.Chart.Fill">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.Chart"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.Chart.Border">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Border"/> class for drawing the border
            border around the <see cref="T:ZedGraph.Chart"/>
            </summary>
            <seealso cref="F:ZedGraph.Chart.Default.BorderColor"/>
            <seealso cref="F:ZedGraph.Chart.Default.BorderPenWidth"/>
        </member>
        <member name="P:ZedGraph.Chart.IsRectAuto">
            <summary>
            Gets or sets a boolean value that determines whether or not the 
            <see cref="P:ZedGraph.Chart.Rect"/> will be calculated automatically (almost always true).
            </summary>
            <remarks>
            If you have a need to set the ChartRect manually, such as you have multiple graphs
            on a page and you want to line up the edges perfectly, you can set this value
            to false.  If you set this value to false, you must also manually set
            the <see cref="P:ZedGraph.Chart.Rect"/> property.
            You can easily determine the ChartRect that ZedGraph would have
            calculated by calling the <see cref="M:ZedGraph.GraphPane.CalcChartRect(System.Drawing.Graphics)"/> method, which returns
            a chart rect sized for the current data range, scale sizes, etc.
            </remarks>
            <value>true to have ZedGraph calculate the ChartRect, false to do it yourself</value>
        </member>
        <member name="T:ZedGraph.Chart.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.Chart"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.Chart.Default.BorderColor">
            <summary>
            The default color for the <see cref="T:ZedGraph.Chart"/> border.
            (<see cref="P:ZedGraph.Chart.Border"/> property). 
            </summary>
        </member>
        <member name="F:ZedGraph.Chart.Default.FillColor">
            <summary>
            The default color for the <see cref="T:ZedGraph.Chart"/> background.
            (<see cref="P:ZedGraph.Chart.Fill"/> property). 
            </summary>
        </member>
        <member name="F:ZedGraph.Chart.Default.FillBrush">
            <summary>
            The default brush for the <see cref="P:ZedGraph.GraphPane.Chart"/> background.
            (<see cref="P:ZedGraph.Fill.Brush"/> property of <see cref="P:ZedGraph.Chart.Fill"/>). 
            </summary>
        </member>
        <member name="F:ZedGraph.Chart.Default.FillType">
            <summary>
            The default <see cref="F:ZedGraph.Chart.Default.FillType"/> for the <see cref="P:ZedGraph.GraphPane.Chart"/> background.
            (<see cref="P:ZedGraph.Fill.Type"/> property of <see cref="P:ZedGraph.Chart.Fill"/>). 
            </summary>
        </member>
        <member name="F:ZedGraph.Chart.Default.BorderPenWidth">
            <summary>
            The default pen width for drawing the 
            <see cref="P:ZedGraph.GraphPane.Chart"/> border
            (<see cref="P:ZedGraph.Chart.Border"/> property).
            Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.Chart.Default.IsBorderVisible">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.Chart"/> border
            (<see cref="P:ZedGraph.Chart.Border"/> property). true
            to show the border border, false to omit the border
            </summary>
        </member>
        <member name="T:ZedGraph.StockPt">
            <summary>
            The basic <see cref="T:ZedGraph.PointPair"/> class holds three data values (X, Y, Z).  This
            class extends the basic PointPair to contain five data values (X, Y, Z, Open, Close).
            </summary>
            <remarks>
            The values are remapped to <see cref="P:ZedGraph.StockPt.Date"/>, <see cref="P:ZedGraph.StockPt.High"/>,
            <see cref="P:ZedGraph.StockPt.Low"/>, <see cref="F:ZedGraph.StockPt.Open"/>, and <see cref="F:ZedGraph.StockPt.Close"/>.
            </remarks>
            
            <author> John Champion </author>
            <version> $Revision: 3.4 $ $Date: 2007/02/07 07:46:46 $ </version>
        </member>
        <member name="F:ZedGraph.StockPt.schema3">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.StockPt.Open">
            <summary>
            This opening value
            </summary>
        </member>
        <member name="F:ZedGraph.StockPt.Close">
            <summary>
            This closing value
            </summary>
        </member>
        <member name="F:ZedGraph.StockPt.Vol">
            <summary>
            This daily trading volume
            </summary>
        </member>
        <member name="F:ZedGraph.StockPt._colorValue">
            <summary>
            This is a user value that can be anything.  It is used to provide special 
            property-based coloration to the graph elements.
            </summary>
        </member>
        <member name="M:ZedGraph.StockPt.#ctor">
            <summary>
            Default Constructor
            </summary>
        </member>
        <member name="M:ZedGraph.StockPt.#ctor(System.Double,System.Double,System.Double,System.Double,System.Double,System.Double)">
            <summary>
            Construct a new StockPt from the specified data values
            </summary>
            <param name="date">The trading date (<see cref="T:ZedGraph.XDate"/>)</param>
            <param name="open">The opening stock price</param>
            <param name="close">The closing stock price</param>
            <param name="high">The daily high stock price</param>
            <param name="low">The daily low stock price</param>
            <param name="vol">The daily trading volume</param>
        </member>
        <member name="M:ZedGraph.StockPt.#ctor(System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.String)">
            <summary>
            Construct a new StockPt from the specified data values including a Tag property
            </summary>
            <param name="date">The trading date (<see cref="T:ZedGraph.XDate"/>)</param>
            <param name="open">The opening stock price</param>
            <param name="close">The closing stock price</param>
            <param name="high">The daily high stock price</param>
            <param name="low">The daily low stock price</param>
            <param name="vol">The daily trading volume</param>
            <param name="tag">The user-defined <see cref="F:ZedGraph.PointPair.Tag"/> property.</param>
        </member>
        <member name="M:ZedGraph.StockPt.#ctor(ZedGraph.StockPt)">
            <summary>
            The StockPt copy constructor.
            </summary>
            <param name="rhs">The basis for the copy.</param>
        </member>
        <member name="M:ZedGraph.StockPt.#ctor(ZedGraph.PointPair)">
            <summary>
            The StockPt copy constructor.
            </summary>
            <param name="rhs">The basis for the copy.</param>
        </member>
        <member name="M:ZedGraph.StockPt.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.StockPt.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.StockPt.ToString(System.Boolean)">
            <summary>
            Format this StockPt value using the default format.  Example:  "( 12.345, -16.876 )".
            The two double values are formatted with the "g" format type.
            </summary>
            <param name="isShowAll">true to show all the value coordinates</param>
            <returns>A string representation of the <see cref="T:ZedGraph.StockPt"/>.</returns>
        </member>
        <member name="M:ZedGraph.StockPt.ToString(System.String,System.Boolean)">
            <summary>
            Format this PointPair value using a general format string.
            Example:  a format string of "e2" would give "( 1.23e+001, -1.69e+001 )".
            If <see paramref="isShowAll"/>
            is true, then the third all coordinates are shown.
            </summary>
            <param name="format">A format string that will be used to format each of
            the two double type values (see <see cref="M:System.Double.ToString"/>).</param>
            <returns>A string representation of the PointPair</returns>
            <param name="isShowAll">true to show all the value coordinates</param>
        </member>
        <member name="P:ZedGraph.StockPt.Date">
            <summary>
            Map the Date property to the X value
            </summary>
        </member>
        <member name="P:ZedGraph.StockPt.High">
            <summary>
            Map the high property to the Y value
            </summary>
        </member>
        <member name="P:ZedGraph.StockPt.Low">
            <summary>
            Map the low property to the Z value
            </summary>
        </member>
        <member name="P:ZedGraph.StockPt.ColorValue">
            <summary>
            The ColorValue property.  This is used with the
            <see cref="F:ZedGraph.FillType.GradientByColorValue"/> option.
            </summary>
        </member>
        <member name="P:ZedGraph.StockPt.IsInvalid5D">
            <summary>
            Readonly value that determines if either the Date, Close, Open, High, or Low
            coordinate in this StockPt is an invalid (not plotable) value.
            It is considered invalid if it is missing (equal to System.Double.Max),
            Infinity, or NaN.
            </summary>
            <returns>true if any value is invalid</returns>
        </member>
        <member name="T:ZedGraph.Scale">
            <summary>
            The Scale class is an abstract base class that encompasses the properties
            and methods associated with a scale of data.
            </summary>
            <remarks>This class is inherited by the
            <see cref="T:ZedGraph.LinearScale"/>, <see cref="T:ZedGraph.LogScale"/>, <see cref="T:ZedGraph.OrdinalScale"/>,
            <see cref="T:ZedGraph.TextScale"/>, <see cref="T:ZedGraph.DateScale"/>, <see cref="T:ZedGraph.ExponentScale"/>,
            <see cref="T:ZedGraph.DateAsOrdinalScale"/>, and <see cref="T:ZedGraph.LinearAsOrdinalScale"/>
            classes to define specific characteristics for those types.
            </remarks>
            
            <author> John Champion  </author>
            <version> $Revision: 1.25 $ $Date: 2007/03/11 02:08:16 $ </version>
        </member>
        <member name="F:ZedGraph.Scale.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._min">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> scale definitions.
            Use the public properties <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>,
            <see cref="P:ZedGraph.Scale.MajorStep"/>, <see cref="P:ZedGraph.Scale.MinorStep"/>, and <see cref="P:ZedGraph.Scale.Exponent"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._max">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> scale definitions.
            Use the public properties <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>,
            <see cref="P:ZedGraph.Scale.MajorStep"/>, <see cref="P:ZedGraph.Scale.MinorStep"/>, and <see cref="P:ZedGraph.Scale.Exponent"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._majorStep">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> scale definitions.
            Use the public properties <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>,
            <see cref="P:ZedGraph.Scale.MajorStep"/>, <see cref="P:ZedGraph.Scale.MinorStep"/>, and <see cref="P:ZedGraph.Scale.Exponent"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._minorStep">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> scale definitions.
            Use the public properties <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>,
            <see cref="P:ZedGraph.Scale.MajorStep"/>, <see cref="P:ZedGraph.Scale.MinorStep"/>, and <see cref="P:ZedGraph.Scale.Exponent"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._exponent">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> scale definitions.
            Use the public properties <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>,
            <see cref="P:ZedGraph.Scale.MajorStep"/>, <see cref="P:ZedGraph.Scale.MinorStep"/>, and <see cref="P:ZedGraph.Scale.Exponent"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._baseTic">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> scale definitions.
            Use the public properties <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>,
            <see cref="P:ZedGraph.Scale.MajorStep"/>, <see cref="P:ZedGraph.Scale.MinorStep"/>, and <see cref="P:ZedGraph.Scale.Exponent"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._minAuto">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> automatic scaling modes.
            Use the public properties <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            <see cref="P:ZedGraph.Scale.MajorStepAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>, 
            <see cref="P:ZedGraph.Scale.MagAuto"/> and <see cref="P:ZedGraph.Scale.FormatAuto"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._maxAuto">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> automatic scaling modes.
            Use the public properties <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            <see cref="P:ZedGraph.Scale.MajorStepAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>, 
            <see cref="P:ZedGraph.Scale.MagAuto"/> and <see cref="P:ZedGraph.Scale.FormatAuto"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._majorStepAuto">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> automatic scaling modes.
            Use the public properties <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            <see cref="P:ZedGraph.Scale.MajorStepAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>, 
            <see cref="P:ZedGraph.Scale.MagAuto"/> and <see cref="P:ZedGraph.Scale.FormatAuto"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._minorStepAuto">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> automatic scaling modes.
            Use the public properties <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            <see cref="P:ZedGraph.Scale.MajorStepAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>, 
            <see cref="P:ZedGraph.Scale.MagAuto"/> and <see cref="P:ZedGraph.Scale.FormatAuto"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._magAuto">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> automatic scaling modes.
            Use the public properties <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            <see cref="P:ZedGraph.Scale.MajorStepAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>, 
            <see cref="P:ZedGraph.Scale.MagAuto"/> and <see cref="P:ZedGraph.Scale.FormatAuto"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._formatAuto">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> automatic scaling modes.
            Use the public properties <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            <see cref="P:ZedGraph.Scale.MajorStepAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>, 
            <see cref="P:ZedGraph.Scale.MagAuto"/> and <see cref="P:ZedGraph.Scale.FormatAuto"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._minGrace">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> "grace" settings.
            These values determine how much extra space is left before the first data value
            and after the last data value.
            Use the public properties <see cref="P:ZedGraph.Scale.MinGrace"/> and <see cref="P:ZedGraph.Scale.MaxGrace"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._maxGrace">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> "grace" settings.
            These values determine how much extra space is left before the first data value
            and after the last data value.
            Use the public properties <see cref="P:ZedGraph.Scale.MinGrace"/> and <see cref="P:ZedGraph.Scale.MaxGrace"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._mag">
            <summary> Private field for the <see cref="T:ZedGraph.Axis"/> scale value display.
            Use the public property <see cref="P:ZedGraph.Scale.Mag"/> for access to this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._isReverse">
            <summary> Private fields for the <see cref="T:ZedGraph.Scale"/> attributes.
            Use the public properties <see cref="P:ZedGraph.Scale.IsReverse"/> and <see cref="P:ZedGraph.Scale.IsUseTenPower"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._isPreventLabelOverlap">
            <summary> Private fields for the <see cref="T:ZedGraph.Scale"/> attributes.
            Use the public properties <see cref="P:ZedGraph.Scale.IsReverse"/> and <see cref="P:ZedGraph.Scale.IsUseTenPower"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._isUseTenPower">
            <summary> Private fields for the <see cref="T:ZedGraph.Scale"/> attributes.
            Use the public properties <see cref="P:ZedGraph.Scale.IsReverse"/> and <see cref="P:ZedGraph.Scale.IsUseTenPower"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._isLabelsInside">
            <summary> Private fields for the <see cref="T:ZedGraph.Scale"/> attributes.
            Use the public properties <see cref="P:ZedGraph.Scale.IsReverse"/> and <see cref="P:ZedGraph.Scale.IsUseTenPower"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._isSkipFirstLabel">
            <summary> Private fields for the <see cref="T:ZedGraph.Scale"/> attributes.
            Use the public properties <see cref="P:ZedGraph.Scale.IsReverse"/> and <see cref="P:ZedGraph.Scale.IsUseTenPower"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._isSkipLastLabel">
            <summary> Private fields for the <see cref="T:ZedGraph.Scale"/> attributes.
            Use the public properties <see cref="P:ZedGraph.Scale.IsReverse"/> and <see cref="P:ZedGraph.Scale.IsUseTenPower"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._isSkipCrossLabel">
            <summary> Private fields for the <see cref="T:ZedGraph.Scale"/> attributes.
            Use the public properties <see cref="P:ZedGraph.Scale.IsReverse"/> and <see cref="P:ZedGraph.Scale.IsUseTenPower"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._isVisible">
            <summary> Private fields for the <see cref="T:ZedGraph.Scale"/> attributes.
            Use the public properties <see cref="P:ZedGraph.Scale.IsReverse"/> and <see cref="P:ZedGraph.Scale.IsUseTenPower"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._textLabels">
            <summary> Private <see cref="T:System.Collections.ArrayList"/> field for the <see cref="T:ZedGraph.Axis"/> array of text labels.
            This property is only used if <see cref="P:ZedGraph.Scale.Type"/> is set to
            <see cref="F:ZedGraph.AxisType.Text"/> </summary>
        </member>
        <member name="F:ZedGraph.Scale._format">
            <summary> Private field for the format of the <see cref="T:ZedGraph.Axis"/> tic labels.
            Use the public property <see cref="P:ZedGraph.Scale.Format"/> for access to this value. </summary>
            <seealso cref="P:ZedGraph.Scale.FormatAuto"/>
        </member>
        <member name="F:ZedGraph.Scale._majorUnit">
            <summary>
            Private fields for Unit types to be used for the major and minor tics.
            See <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/> for the corresponding
            public properties.
            These types only apply for date-time scales (<see cref="P:ZedGraph.Scale.IsDate"/>).
            </summary>
            <value>The value of these types is of enumeration type <see cref="T:ZedGraph.DateUnit"/>
            </value>
        </member>
        <member name="F:ZedGraph.Scale._minorUnit">
            <summary>
            Private fields for Unit types to be used for the major and minor tics.
            See <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/> for the corresponding
            public properties.
            These types only apply for date-time scales (<see cref="P:ZedGraph.Scale.IsDate"/>).
            </summary>
            <value>The value of these types is of enumeration type <see cref="T:ZedGraph.DateUnit"/>
            </value>
        </member>
        <member name="F:ZedGraph.Scale._align">
            <summary> Private field for the alignment of the <see cref="T:ZedGraph.Axis"/> tic labels.
            This fields controls whether the inside, center, or outside edges of the text labels are aligned.
            Use the public property <see cref="P:ZedGraph.Scale.Align"/>
            for access to this value. </summary>
            <seealso cref="P:ZedGraph.Scale.FormatAuto"/>
        </member>
        <member name="F:ZedGraph.Scale._alignH">
            <summary> Private field for the alignment of the <see cref="T:ZedGraph.Axis"/> tic labels.
            This fields controls whether the left, center, or right edges of the text labels are aligned.
            Use the public property <see cref="P:ZedGraph.Scale.AlignH"/>
            for access to this value. </summary>
            <seealso cref="P:ZedGraph.Scale.FormatAuto"/>
        </member>
        <member name="F:ZedGraph.Scale._fontSpec">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> font specificatios.
            Use the public properties <see cref="P:ZedGraph.Scale.FontSpec"/> and
            <see cref="P:ZedGraph.Scale.FontSpec"/> for access to these values. </summary>
        </member>
        <member name="F:ZedGraph.Scale._labelGap">
            <summary>
            Internal field that stores the amount of space between the scale labels and the
            major tics.  Use the public property <see cref="P:ZedGraph.Scale.LabelGap"/> to access this
            value.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._rangeMin">
            <summary>
            Data range temporary values, used by GetRange().
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._rangeMax">
            <summary>
            Data range temporary values, used by GetRange().
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._lBound">
            <summary>
            Data range temporary values, used by GetRange().
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._uBound">
            <summary>
            Data range temporary values, used by GetRange().
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._minPix">
            <summary>
            Pixel positions at the minimum and maximum value for this scale.
            These are temporary values used/valid only during the Draw process.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._maxPix">
            <summary>
            Pixel positions at the minimum and maximum value for this scale.
            These are temporary values used/valid only during the Draw process.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale._minLinTemp">
            <summary>
            Scale values for calculating transforms.  These are temporary values
            used ONLY during the Draw process.
            </summary>
            <remarks>
            These values are just <see cref="P:ZedGraph.Scale.Min"/> and <see cref="P:ZedGraph.Scale.Max"/>
            for normal linear scales, but for log or exponent scales they will be a
            linear representation.  For <see cref="T:ZedGraph.LogScale"/>, it is the
            <see cref="M:System.Math.Log(System.Double)"/> of the value, and for <see cref="T:ZedGraph.ExponentScale"/>,
            it is the <see cref="M:System.Math.Exp(System.Double)"/>
            of the value.
            </remarks>
        </member>
        <member name="F:ZedGraph.Scale._maxLinTemp">
            <summary>
            Scale values for calculating transforms.  These are temporary values
            used ONLY during the Draw process.
            </summary>
            <remarks>
            These values are just <see cref="P:ZedGraph.Scale.Min"/> and <see cref="P:ZedGraph.Scale.Max"/>
            for normal linear scales, but for log or exponent scales they will be a
            linear representation.  For <see cref="T:ZedGraph.LogScale"/>, it is the
            <see cref="M:System.Math.Log(System.Double)"/> of the value, and for <see cref="T:ZedGraph.ExponentScale"/>,
            it is the <see cref="M:System.Math.Exp(System.Double)"/>
            of the value.
            </remarks>
        </member>
        <member name="F:ZedGraph.Scale._ownerAxis">
            <summary>
            private field that stores the owner Axis that contains this Scale instance.
            </summary>
        </member>
        <member name="M:ZedGraph.Scale.#ctor(ZedGraph.Axis)">
            <summary>
            Basic constructor -- requires that the <see cref="T:ZedGraph.Scale"/> object be intialized with
            a pre-existing owner <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="ownerAxis">The <see cref="T:ZedGraph.Axis"/> object that is the owner of this
            <see cref="T:ZedGraph.Scale"/> instance.</param>
        </member>
        <member name="M:ZedGraph.Scale.#ctor(ZedGraph.Scale,ZedGraph.Axis)">
            <summary>
            Copy Constructor.  Create a new <see cref="T:ZedGraph.Scale"/> object based on the specified
            existing one.
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.Scale"/> object to be copied.</param>
            <param name="owner">The <see cref="T:ZedGraph.Axis"/> object that will own the
            new instance of <see cref="T:ZedGraph.Scale"/></param>
        </member>
        <member name="M:ZedGraph.Scale.Clone(ZedGraph.Axis)">
            <summary>
            Create a new clone of the current item, with a new owner assignment
            </summary>
            <param name="owner">The new <see cref="T:ZedGraph.Axis"/> instance that will be
            the owner of the new Scale</param>
            <returns>A new <see cref="T:ZedGraph.Scale"/> clone.</returns>
        </member>
        <member name="M:ZedGraph.Scale.MakeNewScale(ZedGraph.Scale,ZedGraph.AxisType)">
            <summary>
            A construction method that creates a new <see cref="T:ZedGraph.Scale"/> object using the
            properties of an existing <see cref="T:ZedGraph.Scale"/> object, but specifying a new
            <see cref="T:ZedGraph.AxisType"/>.
            </summary>
            <remarks>
            This constructor is used to change the type of an existing <see cref="T:ZedGraph.Axis"/>.
            By specifying the old <see cref="T:ZedGraph.Scale"/> object, you are giving a set of properties
            (which encompasses all fields associated with the scale, since the derived types
            have no fields) to be used in creating a new <see cref="T:ZedGraph.Scale"/> object, only this
            time having the newly specified object type.</remarks>
            <param name="oldScale">The existing <see cref="T:ZedGraph.Scale"/> object from which to
            copy the field data.</param>
            <param name="type">An <see cref="T:ZedGraph.AxisType"/> representing the type of derived type
            of new <see cref="T:ZedGraph.Scale"/> object to create.</param>
            <returns>The new <see cref="T:ZedGraph.Scale"/> object.</returns>
        </member>
        <member name="M:ZedGraph.Scale.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Scale.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to
            serialize the target object
            </summary>
            <remarks>
            You MUST set the _ownerAxis property after deserializing a BarSettings object.
            </remarks>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.Scale.SetupScaleData(ZedGraph.GraphPane,ZedGraph.Axis)">
            <summary>
            Setup some temporary transform values in preparation for rendering the
            <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <remarks>
            This method is typically called by the parent <see cref="T:ZedGraph.GraphPane"/>
            object as part of the <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/> method.  It is also
            called by <see cref="M:ZedGraph.GraphPane.GeneralTransform(System.Double,System.Double,ZedGraph.CoordType)"/> and
            <see cref="M:ZedGraph.GraphPane.ReverseTransform(System.Drawing.PointF,System.Double@,System.Double@,System.Double@)"/>
            methods to setup for coordinate transformations.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="axis">
            The parent <see cref="T:ZedGraph.Axis"/> for this <see cref="T:ZedGraph.Scale"/>
            </param>
        </member>
        <member name="M:ZedGraph.Scale.Linearize(System.Double)">
            <summary>
            Convert a value to its linear equivalent for this type of scale.
            </summary>
            <remarks>
            The default behavior is to just return the value unchanged.  However,
            for <see cref="F:ZedGraph.AxisType.Log"/> and <see cref="F:ZedGraph.AxisType.Exponent"/>,
            it returns the log or power equivalent.
            </remarks>
            <param name="val">The value to be converted</param>
        </member>
        <member name="M:ZedGraph.Scale.DeLinearize(System.Double)">
            <summary>
            Convert a value from its linear equivalent to its actual scale value
            for this type of scale.
            </summary>
            <remarks>
            The default behavior is to just return the value unchanged.  However,
            for <see cref="F:ZedGraph.AxisType.Log"/> and <see cref="F:ZedGraph.AxisType.Exponent"/>,
            it returns the anti-log or inverse-power equivalent.
            </remarks>
            <param name="val">The value to be converted</param>
        </member>
        <member name="M:ZedGraph.Scale.MakeLabel(ZedGraph.GraphPane,System.Int32,System.Double)">
            <summary>
            Make a value label for the axis at the specified ordinal position.
            </summary>
            <remarks>
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="index">
            The zero-based, ordinal index of the label to be generated.  For example, a value of 2 would
            cause the third value label on the axis to be generated.
            </param>
            <param name="dVal">
            The numeric value associated with the label.  This value is ignored for log (<see cref="P:ZedGraph.Scale.IsLog"/>)
            and text (<see cref="P:ZedGraph.Scale.IsText"/>) type axes.
            </param>
            <returns>The resulting value label as a <see cref="T:System.String"/></returns>
        </member>
        <member name="M:ZedGraph.Scale.GetScaleMaxSpace(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Boolean)">
            <summary>
            Get the maximum width of the scale value text that is required to label this
            <see cref="T:ZedGraph.Axis"/>.
            The results of this method are used to determine how much space is required for
            the axis labels.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="applyAngle">
            true to get the bounding box of the text using the <see cref="P:ZedGraph.FontSpec.Angle"/>,
            false to just get the bounding box without rotation
            </param>
            <returns>the maximum width of the text in pixel units</returns>
        </member>
        <member name="M:ZedGraph.Scale.CalcMajorTicValue(System.Double,System.Double)">
            <summary>
            Determine the value for any major tic.
            </summary>
            <remarks>
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <param name="baseVal">
            The value of the first major tic (floating point double)
            </param>
            <param name="tic">
            The major tic number (0 = first major tic).  For log scales, this is the actual power of 10.
            </param>
            <returns>
            The specified major tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.Scale.CalcMinorTicValue(System.Double,System.Int32)">
            <summary>
            Determine the value for any minor tic.
            </summary>
            <remarks>
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <param name="baseVal">
            The value of the first major tic (floating point double).  This tic value is the base
            reference for all tics (including minor ones).
            </param>
            <param name="iTic">
            The major tic number (0 = first major tic).  For log scales, this is the actual power of 10.
            </param>
            <returns>
            The specified minor tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.Scale.CalcMinorStart(System.Double)">
            <summary>
            Internal routine to determine the ordinals of the first minor tic mark
            </summary>
            <param name="baseVal">
            The value of the first major tic for the axis.
            </param>
            <returns>
            The ordinal position of the first minor tic, relative to the first major tic.
            This value can be negative (e.g., -3 means the first minor tic is 3 minor step
            increments before the first major tic.
            </returns>
        </member>
        <member name="M:ZedGraph.Scale.CalcBaseTic">
            <summary>
            Determine the value for the first major tic.
            </summary>
            <remarks>
            This is done by finding the first possible value that is an integral multiple of
            the step size, taking into account the date/time units if appropriate.
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <returns>
            First major tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.Scale.DrawLabels(System.Drawing.Graphics,ZedGraph.GraphPane,System.Double,System.Int32,System.Single,System.Single,System.Single)">
            <summary>
            Draw the value labels, tic marks, and grid lines as
            required for this <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="baseVal">
            The first major tic value for the axis
            </param>
            <param name="nTics">
            The total number of major tics for the axis
            </param>
            <param name="topPix">
            The pixel location of the far side of the ChartRect from this axis.
            This value is the ChartRect.Height for the XAxis, or the ChartRect.Width
            for the YAxis and Y2Axis.
            </param>
            <param name="shift">The number of pixels to shift this axis, based on the
            value of <see cref="P:ZedGraph.Axis.Cross"/>.  A positive value is into the ChartRect relative to
            the default axis position.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.Scale.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Single)">
            <summary>
            Draw the scale, including the tic marks, value labels, and grid lines as
            required for this <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="shiftPos">
            The number of pixels to shift to account for non-primary axis position (e.g.,
            the second, third, fourth, etc. <see cref="T:ZedGraph.YAxis"/> or <see cref="T:ZedGraph.Y2Axis"/>.
            </param>
        </member>
        <member name="M:ZedGraph.Scale.GetClusterWidth(ZedGraph.GraphPane)">
            <summary>
            Determine the width, in pixel units, of each bar cluster including
            the cluster gaps and bar gaps.
            </summary>
            <remarks>
            This method uses the <see cref="P:ZedGraph.BarSettings.ClusterScaleWidth"/> for
            non-ordinal axes, or a cluster width of 1.0 for ordinal axes.
            </remarks>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object
            associated with this <see cref="T:ZedGraph.Axis"/></param>
            <returns>The width of each bar cluster, in pixel units</returns>
        </member>
        <member name="M:ZedGraph.Scale.GetClusterWidth(System.Double)">
            <summary>
            Calculates the cluster width, in pixels, by transforming the specified
            clusterScaleWidth.
            </summary>
            <param name="clusterScaleWidth">The width in user scale units of each
            bar cluster</param>
            <returns>The equivalent pixel size of the bar cluster</returns>
        </member>
        <member name="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)">
            <summary>
            Select a reasonable scale given a range of data values.
            </summary>
            <remarks>
            The scale range is chosen
            based on increments of 1, 2, or 5 (because they are even divisors of 10).  This
            routine honors the <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/> autorange settings as well as the <see cref="P:ZedGraph.Scale.IsLog"/>
            setting.  In the event that any of the autorange settings are false, the
            corresponding <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>, or <see cref="P:ZedGraph.Scale.MajorStep"/>
            setting is explicitly honored, and the remaining autorange settings (if any) will
            be calculated to accomodate the non-autoranged values.  The basic defaults for
            scale selection are defined using <see cref="F:ZedGraph.Scale.Default.ZeroLever"/>,
            <see cref="F:ZedGraph.Scale.Default.TargetXSteps"/>, and <see cref="F:ZedGraph.Scale.Default.TargetYSteps"/>
            from the <see cref="T:ZedGraph.Scale.Default"/> default class.
            <para>On Exit:</para>
            <para><see cref="P:ZedGraph.Scale.Min"/> is set to scale minimum (if <see cref="P:ZedGraph.Scale.MinAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Max"/> is set to scale maximum (if <see cref="P:ZedGraph.Scale.MaxAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MajorStep"/> is set to scale step size (if <see cref="P:ZedGraph.Scale.MajorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MinorStep"/> is set to scale minor step size (if <see cref="P:ZedGraph.Scale.MinorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Mag"/> is set to a magnitude multiplier according to the data</para>
            <para><see cref="P:ZedGraph.Scale.Format"/> is set to the display format for the values (this controls the
            number of decimal places, whether there are thousands separators, currency types, etc.)</para>
            </remarks>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object
            associated with this <see cref="T:ZedGraph.Axis"/></param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.Scale.CalcMaxLabels(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single)">
            <summary>
            Calculate the maximum number of labels that will fit on this axis.
            </summary>
            <remarks>
            This method works for
            both X and Y direction axes, and it works for angled text (assuming that a bounding box
            is an appropriate measure).  Technically, labels at 45 degree angles could fit better than
            the return value of this method since the bounding boxes can overlap without the labels actually
            overlapping.
            </remarks>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object
            associated with this <see cref="T:ZedGraph.Axis"/></param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.Scale.CalcStepSize(System.Double,System.Double)">
            <summary>
            Calculate a step size based on a data range.
            </summary>
            <remarks>
            This utility method
            will try to honor the <see cref="F:ZedGraph.Scale.Default.TargetXSteps"/> and
            <see cref="F:ZedGraph.Scale.Default.TargetYSteps"/> number of
            steps while using a rational increment (1, 2, or 5 -- which are
            even divisors of 10).  This method is used by <see cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>.
            </remarks>
            <param name="range">The range of data in user scale units.  This can
            be a full range of the data for the major step size, or just the
            value of the major step size to calculate the minor step size</param>
            <param name="targetSteps">The desired "typical" number of steps
            to divide the range into</param>
            <returns>The calculated step size for the specified data range.</returns>
        </member>
        <member name="M:ZedGraph.Scale.CalcBoundedStepSize(System.Double,System.Double)">
            <summary>
            Calculate a step size based on a data range, limited to a maximum number of steps.
            </summary>
            <remarks>
            This utility method
            will calculate a step size, of no more than maxSteps,
            using a rational increment (1, 2, or 5 -- which are
            even divisors of 10).  This method is used by <see cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>.
            </remarks>
            <param name="range">The range of data in user scale units.  This can
            be a full range of the data for the major step size, or just the
            value of the major step size to calculate the minor step size</param>
            <param name="maxSteps">The maximum allowable number of steps
            to divide the range into</param>
            <returns>The calculated step size for the specified data range.</returns>
        </member>
        <member name="M:ZedGraph.Scale.CalcNumTics">
            <summary>
            Internal routine to determine the ordinals of the first and last major axis label.
            </summary>
            <returns>
            This is the total number of major tics for this axis.
            </returns>
        </member>
        <member name="M:ZedGraph.Scale.MyMod(System.Double,System.Double)">
            <summary>
            Calculate the modulus (remainder) in a safe manner so that divide
            by zero errors are avoided
            </summary>
            <param name="x">The divisor</param>
            <param name="y">The dividend</param>
            <returns>the value of the modulus, or zero for the divide-by-zero
            case</returns>
        </member>
        <member name="M:ZedGraph.Scale.SetRange(ZedGraph.GraphPane,ZedGraph.Axis)">
            <summary>
            Define suitable default ranges for an axis in the event that
            no data were available
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> of interest</param>
            <param name="axis">The <see cref="T:ZedGraph.Axis"/> for which to set the range</param>
        </member>
        <member name="M:ZedGraph.Scale.Transform(System.Double)">
            <summary>
            Transform the coordinate value from user coordinates (scale value)
            to graphics device coordinates (pixels).
            </summary>
            <remarks>This method takes into
            account the scale range (<see cref="P:ZedGraph.Scale.Min"/> and <see cref="P:ZedGraph.Scale.Max"/>),
            logarithmic state (<see cref="P:ZedGraph.Scale.IsLog"/>), scale reverse state
            (<see cref="P:ZedGraph.Scale.IsReverse"/>) and axis type (<see cref="T:ZedGraph.XAxis"/>,
            <see cref="T:ZedGraph.YAxis"/>, or <see cref="T:ZedGraph.Y2Axis"/>).
            Note that the <see cref="P:ZedGraph.Chart.Rect"/> must be valid, and
            <see cref="M:ZedGraph.Scale.SetupScaleData(ZedGraph.GraphPane,ZedGraph.Axis)"/> must be called for the
            current configuration before using this method (this is called everytime
            the graph is drawn (i.e., <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/> is called).
            </remarks>
            <param name="x">The coordinate value, in user scale units, to
            be transformed</param>
            <returns>the coordinate value transformed to screen coordinates
            for use in calling the <see cref="T:System.Drawing.Graphics"/> draw routines</returns>
        </member>
        <member name="M:ZedGraph.Scale.Transform(System.Boolean,System.Int32,System.Double)">
            <summary>
            Transform the coordinate value from user coordinates (scale value)
            to graphics device coordinates (pixels).
            </summary>
            <remarks>
            This method takes into
            account the scale range (<see cref="P:ZedGraph.Scale.Min"/> and <see cref="P:ZedGraph.Scale.Max"/>),
            logarithmic state (<see cref="P:ZedGraph.Scale.IsLog"/>), scale reverse state
            (<see cref="P:ZedGraph.Scale.IsReverse"/>) and axis type (<see cref="T:ZedGraph.XAxis"/>,
            <see cref="T:ZedGraph.YAxis"/>, or <see cref="T:ZedGraph.Y2Axis"/>).
            Note that the <see cref="P:ZedGraph.Chart.Rect"/> must be valid, and
            <see cref="M:ZedGraph.Scale.SetupScaleData(ZedGraph.GraphPane,ZedGraph.Axis)"/> must be called for the
            current configuration before using this method (this is called everytime
            the graph is drawn (i.e., <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/> is called).
            </remarks>
            <param name="isOverrideOrdinal">true to force the axis to honor the data
            value, rather than replacing it with the ordinal value</param>
            <param name="i">The ordinal value of this point, just in case
            this is an <see cref="F:ZedGraph.AxisType.Ordinal"/> axis</param>
            <param name="x">The coordinate value, in user scale units, to
            be transformed</param>
            <returns>the coordinate value transformed to screen coordinates
            for use in calling the <see cref="T:System.Drawing.Graphics"/> draw routines</returns>
        </member>
        <member name="M:ZedGraph.Scale.ReverseTransform(System.Single)">
            <summary>
            Reverse transform the user coordinates (scale value)
            given a graphics device coordinate (pixels).
            </summary>
            <remarks>
            This method takes into
            account the scale range (<see cref="P:ZedGraph.Scale.Min"/> and <see cref="P:ZedGraph.Scale.Max"/>),
            logarithmic state (<see cref="P:ZedGraph.Scale.IsLog"/>), scale reverse state
            (<see cref="P:ZedGraph.Scale.IsReverse"/>) and axis type (<see cref="T:ZedGraph.XAxis"/>,
            <see cref="T:ZedGraph.YAxis"/>, or <see cref="T:ZedGraph.Y2Axis"/>).
            Note that the <see cref="P:ZedGraph.Chart.Rect"/> must be valid, and
            <see cref="M:ZedGraph.Scale.SetupScaleData(ZedGraph.GraphPane,ZedGraph.Axis)"/> must be called for the
            current configuration before using this method (this is called everytime
            the graph is drawn (i.e., <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/> is called).
            </remarks>
            <param name="pixVal">The screen pixel value, in graphics device coordinates to
            be transformed</param>
            <returns>The user scale value that corresponds to the screen pixel location</returns>
        </member>
        <member name="M:ZedGraph.Scale.LocalTransform(System.Double)">
            <summary>
            Transform the coordinate value from user coordinates (scale value)
            to graphics device coordinates (pixels).
            </summary>
            <remarks>Assumes that the origin
            has been set to the "left" of this axis, facing from the label side.
            Note that the left side corresponds to the scale minimum for the X and
            Y2 axes, but it is the scale maximum for the Y axis.
            This method takes into
            account the scale range (<see cref="P:ZedGraph.Scale.Min"/> and <see cref="P:ZedGraph.Scale.Max"/>),
            logarithmic state (<see cref="P:ZedGraph.Scale.IsLog"/>), scale reverse state
            (<see cref="P:ZedGraph.Scale.IsReverse"/>) and axis type (<see cref="T:ZedGraph.XAxis"/>,
            <see cref="T:ZedGraph.YAxis"/>, or <see cref="T:ZedGraph.Y2Axis"/>).  Note that
            the <see cref="P:ZedGraph.Chart.Rect"/> must be valid, and
            <see cref="M:ZedGraph.Scale.SetupScaleData(ZedGraph.GraphPane,ZedGraph.Axis)"/> must be called for the
            current configuration before using this method.
            </remarks>
            <param name="x">The coordinate value, in linearized user scale units, to
            be transformed</param>
            <returns>the coordinate value transformed to screen coordinates
            for use in calling the <see cref="M:ZedGraph.Scale.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Single)"/> method</returns>
        </member>
        <member name="M:ZedGraph.Scale.SafeLog(System.Double)">
            <summary>
            Calculate a base 10 logarithm in a safe manner to avoid math exceptions
            </summary>
            <param name="x">The value for which the logarithm is to be calculated</param>
            <returns>The value of the logarithm, or 0 if the <paramref name="x"/>
            argument was negative or zero</returns>
        </member>
        <member name="M:ZedGraph.Scale.SafeExp(System.Double,System.Double)">
            <summary>
            Calculate an exponential in a safe manner to avoid math exceptions
            </summary> 
             <param name="x">The value for which the exponential is to be calculated</param>
             <param name="exponent">The exponent value to use for calculating the exponential.</param>
        </member>
        <member name="P:ZedGraph.Scale._minLinearized">
            <summary>
            Gets or sets the linearized version of the <see cref="P:ZedGraph.Scale.Min"/> scale range.
            </summary>
            <remarks>
            This value is valid at any time, whereas <see cref="F:ZedGraph.Scale._minLinTemp"/> is an optimization
            pre-set that is only valid during draw operations.
            </remarks>
        </member>
        <member name="P:ZedGraph.Scale._maxLinearized">
            <summary>
            Gets or sets the linearized version of the <see cref="P:ZedGraph.Scale.Max"/> scale range.
            </summary>
            <remarks>
            This value is valid at any time, whereas <see cref="F:ZedGraph.Scale._maxLinTemp"/> is an optimization
            pre-set that is only valid during draw operations.
            </remarks>
        </member>
        <member name="P:ZedGraph.Scale.Type">
            <summary>
            Get an <see cref="T:ZedGraph.AxisType"/> enumeration that indicates the type of this scale.
            </summary>
        </member>
        <member name="P:ZedGraph.Scale.IsLog">
            <summary>
            True if this scale is <see cref="F:ZedGraph.AxisType.Log"/>, false otherwise.
            </summary>
        </member>
        <member name="P:ZedGraph.Scale.IsExponent">
            <summary>
            True if this scale is <see cref="F:ZedGraph.AxisType.Exponent"/>, false otherwise.
            </summary>
        </member>
        <member name="P:ZedGraph.Scale.IsDate">
            <summary>
            True if this scale is <see cref="F:ZedGraph.AxisType.Date"/>, false otherwise.
            </summary>
        </member>
        <member name="P:ZedGraph.Scale.IsText">
            <summary>
            True if this scale is <see cref="F:ZedGraph.AxisType.Text"/>, false otherwise.
            </summary>
        </member>
        <member name="P:ZedGraph.Scale.IsOrdinal">
            <summary>
            True if this scale is <see cref="F:ZedGraph.AxisType.Ordinal"/>, false otherwise.
            </summary>
            <remarks>
            Note that this is only true for an actual <see cref="T:ZedGraph.OrdinalScale"/> class.
            This property will be false for other ordinal types such as
            <see cref="F:ZedGraph.AxisType.Text"/>, <see cref="F:ZedGraph.AxisType.LinearAsOrdinal"/>,
            or <see cref="F:ZedGraph.AxisType.DateAsOrdinal"/>.  Use the <see cref="P:ZedGraph.Scale.IsAnyOrdinal"/>
            as a "catchall" for all ordinal type axes.
            </remarks>
        </member>
        <member name="P:ZedGraph.Scale.IsAnyOrdinal">
            <summary>
            Gets a value that indicates if this <see cref="T:ZedGraph.Scale"/> is of any of the
            ordinal types in the <see cref="T:ZedGraph.AxisType"/> enumeration.
            </summary>
            <seealso cref="P:ZedGraph.Scale.Type"/>
        </member>
        <member name="P:ZedGraph.Scale.Min">
            <summary>
            Gets or sets the minimum scale value for this <see cref="T:ZedGraph.Scale"/>.
            </summary>
            <remarks>This value can be set
            automatically based on the state of <see cref="P:ZedGraph.Scale.MinAuto"/>.  If
            this value is set manually, then <see cref="P:ZedGraph.Scale.MinAuto"/> will
            also be set to false.
            </remarks>
            <value> The value is defined in user scale units for <see cref="F:ZedGraph.AxisType.Log"/>
            and <see cref="F:ZedGraph.AxisType.Linear"/> axes. For <see cref="F:ZedGraph.AxisType.Text"/>
            and <see cref="F:ZedGraph.AxisType.Ordinal"/> axes,
            this value is an ordinal starting with 1.0.  For <see cref="F:ZedGraph.AxisType.Date"/>
            axes, this value is in XL Date format (see <see cref="T:ZedGraph.XDate"/>, which is the
            number of days since the reference date of January 1, 1900.</value>
            <seealso cref="P:ZedGraph.Scale.Max"/>
            <seealso cref="P:ZedGraph.Scale.MajorStep"/>
            <seealso cref="P:ZedGraph.Scale.MinorStep"/>
            <seealso cref="P:ZedGraph.Scale.MinAuto"/>
        </member>
        <member name="P:ZedGraph.Scale.Max">
            <summary>
            Gets or sets the maximum scale value for this <see cref="T:ZedGraph.Scale"/>.
            </summary>
            <remarks>
            This value can be set
            automatically based on the state of <see cref="P:ZedGraph.Scale.MaxAuto"/>.  If
            this value is set manually, then <see cref="P:ZedGraph.Scale.MaxAuto"/> will
            also be set to false.
            </remarks>
            <value> The value is defined in user scale units for <see cref="F:ZedGraph.AxisType.Log"/>
            and <see cref="F:ZedGraph.AxisType.Linear"/> axes. For <see cref="F:ZedGraph.AxisType.Text"/>
            and <see cref="F:ZedGraph.AxisType.Ordinal"/> axes,
            this value is an ordinal starting with 1.0.  For <see cref="F:ZedGraph.AxisType.Date"/>
            axes, this value is in XL Date format (see <see cref="T:ZedGraph.XDate"/>, which is the
            number of days since the reference date of January 1, 1900.</value>
            <seealso cref="P:ZedGraph.Scale.Min"/>
            <seealso cref="P:ZedGraph.Scale.MajorStep"/>
            <seealso cref="P:ZedGraph.Scale.MinorStep"/>
            <seealso cref="P:ZedGraph.Scale.MaxAuto"/>
        </member>
        <member name="P:ZedGraph.Scale.MajorStep">
            <summary>
            Gets or sets the scale step size for this <see cref="T:ZedGraph.Scale"/> (the increment between
            labeled axis values).
            </summary>
            <remarks>
            This value can be set
            automatically based on the state of <see cref="P:ZedGraph.Scale.MajorStepAuto"/>.  If
            this value is set manually, then <see cref="P:ZedGraph.Scale.MajorStepAuto"/> will
            also be set to false.  This value is ignored for <see cref="F:ZedGraph.AxisType.Log"/>
            axes.  For <see cref="F:ZedGraph.AxisType.Date"/> axes, this
            value is defined in units of <see cref="P:ZedGraph.Scale.MajorUnit"/>.
            </remarks>
            <value> The value is defined in user scale units </value>
            <seealso cref="P:ZedGraph.Scale.Min"/>
            <seealso cref="P:ZedGraph.Scale.Max"/>
            <seealso cref="P:ZedGraph.Scale.MinorStep"/>
            <seealso cref="P:ZedGraph.Scale.MajorStepAuto"/>
            <seealso cref="F:ZedGraph.Scale.Default.TargetXSteps"/>
            <seealso cref="F:ZedGraph.Scale.Default.TargetYSteps"/>
            <seealso cref="F:ZedGraph.Scale.Default.ZeroLever"/>
            <seealso cref="F:ZedGraph.Scale.Default.MaxTextLabels"/>
        </member>
        <member name="P:ZedGraph.Scale.MinorStep">
            <summary>
            Gets or sets the scale minor step size for this <see cref="T:ZedGraph.Scale"/> (the spacing between
            minor tics).
            </summary>
            <remarks>This value can be set
            automatically based on the state of <see cref="P:ZedGraph.Scale.MinorStepAuto"/>.  If
            this value is set manually, then <see cref="P:ZedGraph.Scale.MinorStepAuto"/> will
            also be set to false.  This value is ignored for <see cref="F:ZedGraph.AxisType.Log"/> and
            <see cref="F:ZedGraph.AxisType.Text"/> axes.  For <see cref="F:ZedGraph.AxisType.Date"/> axes, this
            value is defined in units of <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            </remarks>
            <value> The value is defined in user scale units </value>
            <seealso cref="P:ZedGraph.Scale.Min"/>
            <seealso cref="P:ZedGraph.Scale.Max"/>
            <seealso cref="P:ZedGraph.Scale.MajorStep"/>
            <seealso cref="P:ZedGraph.Scale.MinorStepAuto"/>
        </member>
        <member name="P:ZedGraph.Scale.Exponent">
            <summary>
            Gets or sets the scale exponent value.  This only applies to <see cref="F:ZedGraph.AxisType.Exponent"/>. 
            </summary>
            <seealso cref="P:ZedGraph.Scale.Min"/>
            <seealso cref="P:ZedGraph.Scale.Max"/>
            <seealso cref="P:ZedGraph.Scale.MinorStep"/>
            <seealso cref="P:ZedGraph.Scale.MajorStepAuto"/>
            <seealso cref="F:ZedGraph.Scale.Default.TargetXSteps"/>
            <seealso cref="F:ZedGraph.Scale.Default.TargetYSteps"/>
            <seealso cref="F:ZedGraph.Scale.Default.ZeroLever"/>
            <seealso cref="F:ZedGraph.Scale.Default.MaxTextLabels"/>
        </member>
        <member name="P:ZedGraph.Scale.BaseTic">
            <summary>
            Gets or sets the scale value at which the first major tic label will appear.
            </summary>
            <remarks>This property allows the scale labels to start at an irregular value.
            For example, on a scale range with <see cref="P:ZedGraph.Scale.Min"/> = 0, <see cref="P:ZedGraph.Scale.Max"/> = 1000,
            and <see cref="P:ZedGraph.Scale.MajorStep"/> = 200, a <see cref="P:ZedGraph.Scale.BaseTic"/> value of 50 would cause
            the scale labels to appear at values 50, 250, 450, 650, and 850.  Note that the
            default value for this property is <see cref="F:ZedGraph.PointPairBase.Missing"/>, which means the
            value is not used.  Setting this property to any value other than
            <see cref="F:ZedGraph.PointPairBase.Missing"/> will activate the effect.  The value specified must
            coincide with the first major tic.  That is, if <see cref="P:ZedGraph.Scale.BaseTic"/> were set to
            650 in the example above, then the major tics would only occur at 650 and 850.  This
            setting may affect the minor tics, since the minor tics are always referenced to the
            <see cref="P:ZedGraph.Scale.BaseTic"/>.  That is, in the example above, if the <see cref="P:ZedGraph.Scale.MinorStep"/>
            were set to 30 (making it a non-multiple of the major step), then the minor tics would
            occur at 20, 50 (so it lines up with the BaseTic), 80, 110, 140, etc.
            </remarks>
            <value> The value is defined in user scale units </value>
            <seealso cref="P:ZedGraph.Scale.Min"/>
            <seealso cref="P:ZedGraph.Scale.Max"/>
            <seealso cref="P:ZedGraph.Scale.MajorStep"/>
            <seealso cref="P:ZedGraph.Scale.MinorStep"/>
            <seealso cref="P:ZedGraph.Axis.Cross"/>
        </member>
        <member name="P:ZedGraph.Scale.MajorUnit">
            <summary>
            Gets or sets the type of units used for the major step size (<see cref="P:ZedGraph.Scale.MajorStep"/>).
            </summary>
            <remarks>
            This unit type only applies to Date-Time axes (<see cref="F:ZedGraph.AxisType.Date"/> = true).
            The axis is set to date type with the <see cref="P:ZedGraph.Scale.Type"/> property.
            The unit types are defined as <see cref="T:ZedGraph.DateUnit"/>.
            </remarks>
            <value> The value is a <see cref="T:ZedGraph.DateUnit"/> enum type </value>
            <seealso cref="P:ZedGraph.Scale.Min"/>
            <seealso cref="P:ZedGraph.Scale.Max"/>
            <seealso cref="P:ZedGraph.Scale.MajorStep"/>
            <seealso cref="P:ZedGraph.Scale.MinorStep"/>
            <seealso cref="P:ZedGraph.Scale.MajorStepAuto"/>
        </member>
        <member name="P:ZedGraph.Scale.MinorUnit">
            <summary>
            Gets or sets the type of units used for the minor step size (<see cref="P:ZedGraph.Scale.MinorStep"/>).
            </summary>
            <remarks>
            This unit type only applies to Date-Time axes (<see cref="F:ZedGraph.AxisType.Date"/> = true).
            The axis is set to date type with the <see cref="P:ZedGraph.Scale.Type"/> property.
            The unit types are defined as <see cref="T:ZedGraph.DateUnit"/>.
            </remarks>
            <value> The value is a <see cref="T:ZedGraph.DateUnit"/> enum type </value>
            <seealso cref="P:ZedGraph.Scale.Min"/>
            <seealso cref="P:ZedGraph.Scale.Max"/>
            <seealso cref="P:ZedGraph.Scale.MajorStep"/>
            <seealso cref="P:ZedGraph.Scale.MinorStep"/>
            <seealso cref="P:ZedGraph.Scale.MinorStepAuto"/>
        </member>
        <member name="P:ZedGraph.Scale.MajorUnitMultiplier">
            <summary>
            Gets the major unit multiplier for this scale type, if any.
            </summary>
            <remarks>The major unit multiplier will correct the units of
            <see cref="P:ZedGraph.Scale.MajorStep"/> to match the units of <see cref="P:ZedGraph.Scale.Min"/>
            and <see cref="P:ZedGraph.Scale.Max"/>.  This reflects the setting of
            <see cref="P:ZedGraph.Scale.MajorUnit"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.Scale.MinorUnitMultiplier">
            <summary>
            Gets the minor unit multiplier for this scale type, if any.
            </summary>
            <remarks>The minor unit multiplier will correct the units of
            <see cref="P:ZedGraph.Scale.MinorStep"/> to match the units of <see cref="P:ZedGraph.Scale.Min"/>
            and <see cref="P:ZedGraph.Scale.Max"/>.  This reflects the setting of
            <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.Scale.MinAuto">
            <summary>
            Gets or sets a value that determines whether or not the minimum scale value <see cref="P:ZedGraph.Scale.Min"/>
            is set automatically.
            </summary>
            <remarks>
            This value will be set to false if
            <see cref="P:ZedGraph.Scale.Min"/> is manually changed.
            </remarks>
            <value>true for automatic mode, false for manual mode</value>
            <seealso cref="P:ZedGraph.Scale.Min"/>
        </member>
        <member name="P:ZedGraph.Scale.MaxAuto">
            <summary>
            Gets or sets a value that determines whether or not the maximum scale value <see cref="P:ZedGraph.Scale.Max"/>
            is set automatically.
            </summary>
            <remarks>
            This value will be set to false if
            <see cref="P:ZedGraph.Scale.Max"/> is manually changed.
            </remarks>
            <value>true for automatic mode, false for manual mode</value>
            <seealso cref="P:ZedGraph.Scale.Max"/>
        </member>
        <member name="P:ZedGraph.Scale.MajorStepAuto">
            <summary>
            Gets or sets a value that determines whether or not the scale step size <see cref="P:ZedGraph.Scale.MajorStep"/>
            is set automatically.
            </summary>
            <remarks>
            This value will be set to false if
            <see cref="P:ZedGraph.Scale.MajorStep"/> is manually changed.
            </remarks>
            <value>true for automatic mode, false for manual mode</value>
            <seealso cref="P:ZedGraph.Scale.MajorStep"/>
        </member>
        <member name="P:ZedGraph.Scale.MinorStepAuto">
            <summary>
            Gets or sets a value that determines whether or not the minor scale step size <see cref="P:ZedGraph.Scale.MinorStep"/>
            is set automatically.
            </summary>
            <remarks>
            This value will be set to false if
            <see cref="P:ZedGraph.Scale.MinorStep"/> is manually changed.
            </remarks>
            <value>true for automatic mode, false for manual mode</value>
            <seealso cref="P:ZedGraph.Scale.MinorStep"/>
        </member>
        <member name="P:ZedGraph.Scale.FormatAuto">
            <summary>
            Determines whether or not the scale label format <see cref="P:ZedGraph.Scale.Format"/>
            is determined automatically based on the range of data values.
            </summary>
            <remarks>
            This value will be set to false if
            <see cref="P:ZedGraph.Scale.Format"/> is manually changed.
            </remarks>
            <value>true if <see cref="P:ZedGraph.Scale.Format"/> will be set automatically, false
            if it is to be set manually by the user</value>
            <seealso cref="P:ZedGraph.Scale.Mag"/>
            <seealso cref="P:ZedGraph.Scale.Format"/>
            <seealso cref="P:ZedGraph.Scale.FontSpec"/>
        </member>
        <member name="P:ZedGraph.Scale.Format">
            <summary>
            The format of the <see cref="T:ZedGraph.Axis"/> tic labels.
            </summary>
            <remarks>
            This property may be a date format or a numeric format, depending on the setting of
            <see cref="P:ZedGraph.Scale.Type">Scale.Type</see>.
            This property may be set automatically by ZedGraph, depending on the state of
            <see cref="P:ZedGraph.Scale.FormatAuto"/>.
            </remarks>
            <value>The format string conforms to the
            <see cref="T:System.Globalization.DateTimeFormatInfo"/> for date formats, and
            <see cref="T:System.Globalization.NumberFormatInfo"/> for numeric formats.
            </value>
            <seealso cref="P:ZedGraph.Scale.Mag"/>
            <seealso cref="P:ZedGraph.Scale.FormatAuto"/>
            <seealso cref="P:ZedGraph.Scale.FontSpec"/>
        </member>
        <member name="P:ZedGraph.Scale.Mag">
            <summary>
            The magnitude multiplier for scale values.
            </summary>
            <remarks>
            This is used to limit
            the size of the displayed value labels.  For example, if the value
            is really 2000000, then the graph will display 2000 with a 10^3
            magnitude multiplier.  This value can be determined automatically
            depending on the state of <see cref="P:ZedGraph.Scale.MagAuto"/>.
            If this value is set manually by the user,
            then <see cref="P:ZedGraph.Scale.MagAuto"/> will also be set to false.
            </remarks>
            <value>The magnitude multiplier (power of 10) for the scale
            value labels</value>
            <seealso cref="P:ZedGraph.AxisLabel.IsOmitMag"/>
            <seealso cref="P:ZedGraph.Axis.Title"/>
            <seealso cref="P:ZedGraph.Scale.Format"/>
            <seealso cref="P:ZedGraph.Scale.FontSpec"/>
        </member>
        <member name="P:ZedGraph.Scale.MagAuto">
            <summary>
            Determines whether the <see cref="P:ZedGraph.Scale.Mag"/> value will be set
            automatically based on the data, or manually by the user.
            </summary>
            <remarks>
            If the user manually sets the <see cref="P:ZedGraph.Scale.Mag"/> value, then this
            flag will be set to false.
            </remarks>
            <value>true to have <see cref="P:ZedGraph.Scale.Mag"/> set automatically,
            false otherwise</value>
            <seealso cref="P:ZedGraph.AxisLabel.IsOmitMag"/>
            <seealso cref="P:ZedGraph.Axis.Title"/>
            <seealso cref="P:ZedGraph.Scale.Mag"/>
        </member>
        <member name="P:ZedGraph.Scale.MinGrace">
            <summary> Gets or sets the "grace" value applied to the minimum data range.
            </summary>
            <remarks>
            This value is
            expressed as a fraction of the total data range.  For example, assume the data
            range is from 4.0 to 16.0, leaving a range of 12.0.  If MinGrace is set to
            0.1, then 10% of the range, or 1.2 will be subtracted from the minimum data value.
            The scale will then be ranged to cover at least 2.8 to 16.0.
            </remarks>
            <seealso cref="P:ZedGraph.Scale.Min"/>
            <seealso cref="F:ZedGraph.Scale.Default.MinGrace"/>
            <seealso cref="P:ZedGraph.Scale.MaxGrace"/>
        </member>
        <member name="P:ZedGraph.Scale.MaxGrace">
            <summary> Gets or sets the "grace" value applied to the maximum data range.
            </summary>
            <remarks>
            This values determines how much extra space is left after the last data value.
            This value is
            expressed as a fraction of the total data range.  For example, assume the data
            range is from 4.0 to 16.0, leaving a range of 12.0.  If MaxGrace is set to
            0.1, then 10% of the range, or 1.2 will be added to the maximum data value.
            The scale will then be ranged to cover at least 4.0 to 17.2.
            </remarks>
            <seealso cref="P:ZedGraph.Scale.Max"/>
            <seealso cref="F:ZedGraph.Scale.Default.MaxGrace"/>
            <seealso cref="P:ZedGraph.Scale.MinGrace"/>
        </member>
        <member name="P:ZedGraph.Scale.Align">
            <summary> Controls the alignment of the <see cref="T:ZedGraph.Axis"/> tic labels.
            </summary>
            <remarks>
            This property controls whether the inside, center, or outside edges of the
            text labels are aligned.
            </remarks>
        </member>
        <member name="P:ZedGraph.Scale.AlignH">
            <summary> Controls the alignment of the <see cref="T:ZedGraph.Axis"/> tic labels.
            </summary>
            <remarks>
            This property controls whether the left, center, or right edges of the
            text labels are aligned.
            </remarks>
        </member>
        <member name="P:ZedGraph.Scale.FontSpec">
            <summary>
            Gets a reference to the <see cref="T:ZedGraph.FontSpec"/> class used to render
            the scale values
            </summary>
            <seealso cref="F:ZedGraph.Scale.Default.FontFamily"/>
            <seealso cref="F:ZedGraph.Scale.Default.FontSize"/>
            <seealso cref="F:ZedGraph.Scale.Default.FontColor"/>
            <seealso cref="F:ZedGraph.Scale.Default.FontBold"/>
            <seealso cref="F:ZedGraph.Scale.Default.FontUnderline"/>
            <seealso cref="F:ZedGraph.Scale.Default.FontItalic"/>
        </member>
        <member name="P:ZedGraph.Scale.LabelGap">
            <summary>
            The gap between the scale labels and the tics.
            </summary>
        </member>
        <member name="P:ZedGraph.Scale.IsLabelsInside">
            <summary>
            Gets or sets a value that causes the axis scale labels and title to appear on the
            opposite side of the axis.
            </summary>
            <remarks>
            For example, setting this flag to true for the <see cref="T:ZedGraph.YAxis"/> will shift the
            axis labels and title to the right side of the <see cref="T:ZedGraph.YAxis"/> instead of the
            normal left-side location.  Set this property to true for the <see cref="T:ZedGraph.XAxis"/>,
            and set the <see cref="P:ZedGraph.Axis.Cross"/> property for the <see cref="T:ZedGraph.XAxis"/> to an arbitrarily
            large value (assuming <see cref="P:ZedGraph.Scale.IsReverse"/> is false for the <see cref="T:ZedGraph.YAxis"/>) in
            order to have the <see cref="T:ZedGraph.XAxis"/> appear at the top of the <see cref="P:ZedGraph.Chart.Rect"/>.
            </remarks>
            <seealso cref="P:ZedGraph.Scale.IsReverse"/>
            <seealso cref="P:ZedGraph.Axis.Cross"/>
        </member>
        <member name="P:ZedGraph.Scale.IsSkipFirstLabel">
            <summary>
            Gets or sets a value that causes the first scale label for this <see cref="T:ZedGraph.Axis"/> to be
            hidden.
            </summary>
            <remarks>
            Often, for axis that have an active <see cref="P:ZedGraph.Axis.Cross"/> setting (e.g., <see cref="P:ZedGraph.Axis.CrossAuto"/>
            is false), the first and/or last scale label are overlapped by opposing axes.  Use this
            property to hide the first scale label to avoid the overlap.  Note that setting this value
            to true will hide any scale label that appears within <see cref="F:ZedGraph.Scale.Default.EdgeTolerance"/> of the
            beginning of the <see cref="T:ZedGraph.Axis"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.Scale.IsSkipLastLabel">
            <summary>
            Gets or sets a value that causes the last scale label for this <see cref="T:ZedGraph.Axis"/> to be
            hidden.
            </summary>
            <remarks>
            Often, for axis that have an active <see cref="P:ZedGraph.Axis.Cross"/> setting (e.g., <see cref="P:ZedGraph.Axis.CrossAuto"/>
            is false), the first and/or last scale label are overlapped by opposing axes.  Use this
            property to hide the last scale label to avoid the overlap.  Note that setting this value
            to true will hide any scale label that appears within <see cref="F:ZedGraph.Scale.Default.EdgeTolerance"/> of the
            end of the <see cref="T:ZedGraph.Axis"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.Scale.IsSkipCrossLabel">
            <summary>
            Gets or sets a value that causes the scale label that is located at the <see cref="P:ZedGraph.Axis.Cross"/>
            value for this <see cref="T:ZedGraph.Axis"/> to be hidden.
            </summary>
            <remarks>
            For axes that have an active <see cref="P:ZedGraph.Axis.Cross"/> setting (e.g., <see cref="P:ZedGraph.Axis.CrossAuto"/>
            is false), the scale label at the <see cref="P:ZedGraph.Axis.Cross"/> value is overlapped by opposing axes.
            Use this property to hide the scale label to avoid the overlap.
            </remarks>
        </member>
        <member name="P:ZedGraph.Scale.IsReverse">
            <summary>
            Determines if the scale values are reversed for this <see cref="T:ZedGraph.Axis"/>
            </summary>
            <value>true for the X values to decrease to the right or the Y values to
            decrease upwards, false otherwise</value>
            <seealso cref="F:ZedGraph.Scale.Default.IsReverse"/>.
        </member>
        <member name="P:ZedGraph.Scale.IsUseTenPower">
            <summary>
            Determines if powers-of-ten notation will be used for the numeric value labels.
            </summary>
            <remarks>
            The powers-of-ten notation is just the text "10" followed by a superscripted value
            indicating the magnitude.  This mode is only valid for log scales (see
            <see cref="P:ZedGraph.Scale.IsLog"/> and <see cref="P:ZedGraph.Scale.Type"/>).
            </remarks>
            <value> boolean value; true to show the title as a power of ten, false to
            show a regular numeric value (e.g., "0.01", "10", "1000")</value>
        </member>
        <member name="P:ZedGraph.Scale.IsPreventLabelOverlap">
            <summary>
            Gets or sets a <see cref="T:System.Boolean"/> value that determines if ZedGraph will check to
            see if the <see cref="T:ZedGraph.Axis"/> scale labels are close enough to overlap.  If so,
            ZedGraph will adjust the step size to prevent overlap.
            </summary>
            <remarks>
            The process of checking for overlap is done during the <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/>
            method call, and affects the selection of the major step size (<see cref="P:ZedGraph.Scale.MajorStep"/>).
            </remarks>
            <value> boolean value; true to check for overlap, false otherwise</value>
        </member>
        <member name="P:ZedGraph.Scale.IsVisible">
            <summary>
            Gets or sets a property that determines whether or not the scale values will be shown.
            </summary>
            <value>true to show the scale values, false otherwise</value>
            <seealso cref="P:ZedGraph.Axis.IsVisible"/>.
        </member>
        <member name="P:ZedGraph.Scale.TextLabels">
            <summary>
            The text labels for this <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <remarks>
            This property is only
            applicable if <see cref="P:ZedGraph.Scale.Type"/> is set to <see cref="F:ZedGraph.AxisType.Text"/>.
            </remarks>
        </member>
        <member name="T:ZedGraph.Scale.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.Scale"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.ZeroLever">
            <summary>
            The default "zero lever" for automatically selecting the axis
            scale range (see <see cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>). This number is
            used to determine when an axis scale range should be extended to
            include the zero value.  This value is maintained only in the
            <see cref="T:ZedGraph.Scale.Default"/> class, and cannot be changed after compilation.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.MinGrace">
            <summary> The default "grace" value applied to the minimum data range.
            This value is
            expressed as a fraction of the total data range.  For example, assume the data
            range is from 4.0 to 16.0, leaving a range of 12.0.  If MinGrace is set to
            0.1, then 10% of the range, or 1.2 will be subtracted from the minimum data value.
            The scale will then be ranged to cover at least 2.8 to 16.0.
            </summary>
            <seealso cref="F:ZedGraph.Scale.Default.MinGrace"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.MaxGrace">
            <summary> The default "grace" value applied to the maximum data range.
            This value is
            expressed as a fraction of the total data range.  For example, assume the data
            range is from 4.0 to 16.0, leaving a range of 12.0.  If MaxGrace is set to
            0.1, then 10% of the range, or 1.2 will be added to the maximum data value.
            The scale will then be ranged to cover at least 4.0 to 17.2.
            </summary>
            <seealso cref="F:ZedGraph.Scale.Default.MinGrace"/>
            <seealso cref="F:ZedGraph.Scale.Default.MaxGrace"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.MaxTextLabels">
            <summary>
            The maximum number of text labels (major tics) that will be allowed on the plot by
            the automatic scaling logic.  This value applies only to <see cref="F:ZedGraph.AxisType.Text"/>
            axes.  If there are more than MaxTextLabels on the plot, then
            <see cref="P:ZedGraph.Scale.MajorStep"/> will be increased to reduce the number of labels.  That is,
            the step size might be increased to 2.0 to show only every other label.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.TargetXSteps">
            <summary>
            The default target number of steps for automatically selecting the X axis
            scale step size (see <see cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>).
            This number is an initial target value for the number of major steps
            on an axis.  This value is maintained only in the
            <see cref="T:ZedGraph.Scale.Default"/> class, and cannot be changed after compilation.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.TargetYSteps">
            <summary>
            The default target number of steps for automatically selecting the Y or Y2 axis
            scale step size (see <see cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>).
            This number is an initial target value for the number of major steps
            on an axis.  This value is maintained only in the
            <see cref="T:ZedGraph.Scale.Default"/> class, and cannot be changed after compilation.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.TargetMinorXSteps">
            <summary>
            The default target number of minor steps for automatically selecting the X axis
            scale minor step size (see <see cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>).
            This number is an initial target value for the number of minor steps
            on an axis.  This value is maintained only in the
            <see cref="T:ZedGraph.Scale.Default"/> class, and cannot be changed after compilation.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.TargetMinorYSteps">
            <summary>
            The default target number of minor steps for automatically selecting the Y or Y2 axis
            scale minor step size (see <see cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>).
            This number is an initial target value for the number of minor steps
            on an axis.  This value is maintained only in the
            <see cref="T:ZedGraph.Scale.Default"/> class, and cannot be changed after compilation.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.IsReverse">
            <summary>
            The default reverse mode for the <see cref="T:ZedGraph.Axis"/> scale
            (<see cref="F:ZedGraph.Scale.Default.IsReverse"/> property). true for a reversed scale
            (X decreasing to the left, Y/Y2 decreasing upwards), false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.Format">
            <summary>
            The default setting for the <see cref="T:ZedGraph.Axis"/> scale format string
            (<see cref="F:ZedGraph.Scale.Default.Format"/> property).  For numeric values, this value is
            setting according to the <see cref="M:System.String.Format(System.String,System.Object)"/> format strings.  For date
            type values, this value is set as per the <see cref="M:ZedGraph.XDate.ToString"/> function.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.RangeYearYear">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            If the total span of data exceeds this number (in days), then the auto-range
            code will select <see cref="P:ZedGraph.Scale.MajorUnit"/> = <see cref="F:ZedGraph.DateUnit.Year"/>
            and <see cref="P:ZedGraph.Scale.MinorUnit"/> = <see cref="F:ZedGraph.DateUnit.Year"/>.
            This value normally defaults to 1825 days (5 years).
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.RangeYearMonth">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            If the total span of data exceeds this number (in days), then the auto-range
            code will select <see cref="P:ZedGraph.Scale.MajorUnit"/> = <see cref="F:ZedGraph.DateUnit.Year"/>
            and <see cref="P:ZedGraph.Scale.MinorUnit"/> = <see cref="F:ZedGraph.DateUnit.Month"/>.
            This value normally defaults to 365 days (1 year).
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.RangeMonthMonth">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            If the total span of data exceeds this number (in days), then the auto-range
            code will select <see cref="P:ZedGraph.Scale.MajorUnit"/> = <see cref="F:ZedGraph.DateUnit.Month"/>
            and <see cref="P:ZedGraph.Scale.MinorUnit"/> = <see cref="F:ZedGraph.DateUnit.Month"/>.
            This value normally defaults to 90 days (3 months).
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.RangeDayDay">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            If the total span of data exceeds this number (in days), then the auto-range
            code will select <see cref="P:ZedGraph.Scale.MajorUnit"/> = <see cref="F:ZedGraph.DateUnit.Day"/>
            and <see cref="P:ZedGraph.Scale.MinorUnit"/> = <see cref="F:ZedGraph.DateUnit.Day"/>.
            This value normally defaults to 10 days.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.RangeDayHour">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            If the total span of data exceeds this number (in days), then the auto-range
            code will select <see cref="P:ZedGraph.Scale.MajorUnit"/> = <see cref="F:ZedGraph.DateUnit.Day"/>
            and <see cref="P:ZedGraph.Scale.MinorUnit"/> = <see cref="F:ZedGraph.DateUnit.Hour"/>.
            This value normally defaults to 3 days.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.RangeHourHour">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            If the total span of data exceeds this number (in days), then the auto-range
            code will select <see cref="P:ZedGraph.Scale.MajorUnit"/> = <see cref="F:ZedGraph.DateUnit.Hour"/>
            and <see cref="P:ZedGraph.Scale.MinorUnit"/> = <see cref="F:ZedGraph.DateUnit.Hour"/>.
            This value normally defaults to 0.4167 days (10 hours).
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.RangeHourMinute">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            If the total span of data exceeds this number (in days), then the auto-range
            code will select <see cref="P:ZedGraph.Scale.MajorUnit"/> = <see cref="F:ZedGraph.DateUnit.Hour"/>
            and <see cref="P:ZedGraph.Scale.MinorUnit"/> = <see cref="F:ZedGraph.DateUnit.Minute"/>.
            This value normally defaults to 0.125 days (3 hours).
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.RangeMinuteMinute">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            If the total span of data exceeds this number (in days), then the auto-range
            code will select <see cref="P:ZedGraph.Scale.MajorUnit"/> = <see cref="F:ZedGraph.DateUnit.Minute"/>
            and <see cref="P:ZedGraph.Scale.MinorUnit"/> = <see cref="F:ZedGraph.DateUnit.Minute"/>.
            This value normally defaults to 6.94e-3 days (10 minutes).
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.RangeMinuteSecond">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            If the total span of data exceeds this number (in days), then the auto-range
            code will select <see cref="P:ZedGraph.Scale.MajorUnit"/> = <see cref="F:ZedGraph.DateUnit.Minute"/>
            and <see cref="P:ZedGraph.Scale.MinorUnit"/> = <see cref="F:ZedGraph.DateUnit.Second"/>.
            This value normally defaults to 2.083e-3 days (3 minutes).
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.RangeSecondSecond">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            If the total span of data exceeds this number (in days), then the auto-range
            code will select <see cref="P:ZedGraph.Scale.MajorUnit"/> = <see cref="F:ZedGraph.DateUnit.Second"/>
            and <see cref="P:ZedGraph.Scale.MinorUnit"/> = <see cref="F:ZedGraph.DateUnit.Second"/>.
            This value normally defaults to 3.472e-5 days (3 seconds).
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.FormatYearYear">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            This is the format used for the scale values when auto-ranging code
            selects a <see cref="F:ZedGraph.Scale.Default.Format"/> of <see cref="F:ZedGraph.DateUnit.Year"/>
            for <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="F:ZedGraph.DateUnit.Year"/> for 
            for <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
            <seealso cref="T:System.Globalization.DateTimeFormatInfo"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.FormatYearMonth">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            This is the format used for the scale values when auto-ranging code
            selects a <see cref="F:ZedGraph.Scale.Default.Format"/> of <see cref="F:ZedGraph.DateUnit.Year"/>
            for <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="F:ZedGraph.DateUnit.Month"/> for 
            for <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
            <seealso cref="T:System.Globalization.DateTimeFormatInfo"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.FormatMonthMonth">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            This is the format used for the scale values when auto-ranging code
            selects a <see cref="F:ZedGraph.Scale.Default.Format"/> of <see cref="F:ZedGraph.DateUnit.Month"/>
            for <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="F:ZedGraph.DateUnit.Month"/> for 
            for <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
            <seealso cref="T:System.Globalization.DateTimeFormatInfo"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.FormatDayDay">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            This is the format used for the scale values when auto-ranging code
            selects a <see cref="F:ZedGraph.Scale.Default.Format"/> of <see cref="F:ZedGraph.DateUnit.Day"/>
            for <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="F:ZedGraph.DateUnit.Day"/> for 
            for <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
            <seealso cref="T:System.Globalization.DateTimeFormatInfo"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.FormatDayHour">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            This is the format used for the scale values when auto-ranging code
            selects a <see cref="F:ZedGraph.Scale.Default.Format"/> of <see cref="F:ZedGraph.DateUnit.Day"/>
            for <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="F:ZedGraph.DateUnit.Hour"/> for 
            for <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
            <seealso cref="T:System.Globalization.DateTimeFormatInfo"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.FormatHourHour">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            This is the format used for the scale values when auto-ranging code
            selects a <see cref="F:ZedGraph.Scale.Default.Format"/> of <see cref="F:ZedGraph.DateUnit.Hour"/>
            for <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="F:ZedGraph.DateUnit.Hour"/> for 
            for <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
            <seealso cref="T:System.Globalization.DateTimeFormatInfo"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.FormatHourMinute">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            This is the format used for the scale values when auto-ranging code
            selects a <see cref="F:ZedGraph.Scale.Default.Format"/> of <see cref="F:ZedGraph.DateUnit.Hour"/>
            for <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="F:ZedGraph.DateUnit.Minute"/> for 
            for <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
            <seealso cref="T:System.Globalization.DateTimeFormatInfo"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.FormatMinuteMinute">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            This is the format used for the scale values when auto-ranging code
            selects a <see cref="F:ZedGraph.Scale.Default.Format"/> of <see cref="F:ZedGraph.DateUnit.Minute"/>
            for <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="F:ZedGraph.DateUnit.Minute"/> for 
            for <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
            <seealso cref="T:System.Globalization.DateTimeFormatInfo"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.FormatMinuteSecond">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            This is the format used for the scale values when auto-ranging code
            selects a <see cref="F:ZedGraph.Scale.Default.Format"/> of <see cref="F:ZedGraph.DateUnit.Minute"/>
            for <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="F:ZedGraph.DateUnit.Second"/> for 
            for <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
            <seealso cref="T:System.Globalization.DateTimeFormatInfo"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.FormatSecondSecond">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            This is the format used for the scale values when auto-ranging code
            selects a <see cref="F:ZedGraph.Scale.Default.Format"/> of <see cref="F:ZedGraph.DateUnit.Second"/>
            for <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="F:ZedGraph.DateUnit.Second"/> for 
            for <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
            <seealso cref="T:System.Globalization.DateTimeFormatInfo"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.FormatMillisecond">
            <summary>
            A default setting for the <see cref="F:ZedGraph.AxisType.Date"/> auto-ranging code.
            This values applies only to Date-Time type axes.
            This is the format used for the scale values when auto-ranging code
            selects a <see cref="F:ZedGraph.Scale.Default.Format"/> of <see cref="F:ZedGraph.DateUnit.Millisecond"/>
            for <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="F:ZedGraph.DateUnit.Millisecond"/> for 
            for <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            This value is used by the <see cref="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)"/> method.
            </summary>
            <seealso cref="T:System.Globalization.DateTimeFormatInfo"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.Align">
            <summary> The default alignment of the <see cref="T:ZedGraph.Axis"/> tic labels.
            This value controls whether the inside, center, or outside edges of the text labels are aligned.
            </summary>
            <seealso cref="T:ZedGraph.AlignP"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.AlignH">
            <summary> The default alignment of the <see cref="T:ZedGraph.Axis"/> tic labels.
            This value controls whether the left, center, or right edges of the text labels are aligned.
            </summary>
            <seealso cref="F:ZedGraph.Scale.Default.AlignH"/>
        </member>
        <member name="F:ZedGraph.Scale.Default.FontFamily">
            <summary>
            The default font family for the <see cref="T:ZedGraph.Axis"/> scale values
            font specification <see cref="P:ZedGraph.Scale.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.Family"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.FontSize">
            <summary>
            The default font size for the <see cref="T:ZedGraph.Axis"/> scale values
            font specification <see cref="P:ZedGraph.Scale.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.Size"/> property).  Units are
            in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.FontColor">
            <summary>
            The default font color for the <see cref="T:ZedGraph.Axis"/> scale values
            font specification <see cref="P:ZedGraph.Scale.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.FontColor"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.FontBold">
            <summary>
            The default font bold mode for the <see cref="T:ZedGraph.Axis"/> scale values
            font specification <see cref="P:ZedGraph.Scale.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.IsBold"/> property). true
            for a bold typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.FontItalic">
            <summary>
            The default font italic mode for the <see cref="T:ZedGraph.Axis"/> scale values
            font specification <see cref="P:ZedGraph.Scale.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.IsItalic"/> property). true
            for an italic typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.FontUnderline">
            <summary>
            The default font underline mode for the <see cref="T:ZedGraph.Axis"/> scale values
            font specification <see cref="P:ZedGraph.Scale.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.IsUnderline"/> property). true
            for an underlined typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.FillColor">
            <summary>
            The default color for filling in the scale text background
            (see <see cref="P:ZedGraph.Fill.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.FillBrush">
            <summary>
            The default custom brush for filling in the scale text background
            (see <see cref="P:ZedGraph.Fill.Brush"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.FillType">
            <summary>
            The default fill mode for filling in the scale text background
            (see <see cref="P:ZedGraph.Fill.Type"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.IsVisible">
            <summary>
            The default value for <see cref="F:ZedGraph.Scale.Default.IsVisible"/>, which determines
            whether or not the scale values are displayed.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.IsLabelsInside">
            <summary>
            The default value for <see cref="F:ZedGraph.Scale.Default.IsLabelsInside"/>, which determines
            whether or not the scale labels and title for the <see cref="T:ZedGraph.Axis"/> will appear
            on the opposite side of the <see cref="T:ZedGraph.Axis"/> that it normally appears.
            </summary>
        </member>
        <member name="F:ZedGraph.Scale.Default.EdgeTolerance">
            <summary>
            Determines the size of the band at the beginning and end of the axis that will have labels
            omitted if the axis is shifted due to a non-default location using the <see cref="P:ZedGraph.Axis.Cross"/>
            property.
            </summary>
            <remarks>
            This parameter applies only when <see cref="P:ZedGraph.Axis.CrossAuto"/> is false.  It is scaled according
            to the size of the graph based on <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  When a non-default
            axis location is selected, the first and last labels on that axis will overlap the opposing
            axis frame.  This parameter allows those labels to be omitted to avoid the overlap.  Set this
            parameter to zero to turn off the effect.
            </remarks>
        </member>
        <member name="F:ZedGraph.Scale.Default.LabelGap">
            <summary>
            The default setting for the gap between the outside tics (or the axis edge
            if there are no outside tics) and the scale labels, expressed as a fraction of
            the major tic size.
            </summary>
        </member>
        <member name="T:ZedGraph.LinearAsOrdinalScale">
            <summary>
            The LinearAsOrdinalScale class inherits from the <see cref="T:ZedGraph.Scale"/> class, and implements
            the features specific to <see cref="F:ZedGraph.AxisType.LinearAsOrdinal"/>.
            </summary>
            <remarks>
            LinearAsOrdinal is an ordinal axis that will have labels formatted with values from the actual data
            values of the first <see cref="T:ZedGraph.CurveItem"/> in the <see cref="T:ZedGraph.CurveList"/>.
            Although the tics are labeled with real data values, the actual points will be
            evenly-spaced in spite of the data values.  For example, if the X values of the first curve
            are 1, 5, and 100, then the tic labels will show 1, 5, and 100, but they will be equal
            distance from each other.
            </remarks>
            
            <author> John Champion  </author>
            <version> $Revision: 1.9 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="F:ZedGraph.LinearAsOrdinalScale.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.LinearAsOrdinalScale.#ctor(ZedGraph.Axis)">
            <summary>
            Default constructor that defines the owner <see cref="T:ZedGraph.Axis"/>
            (containing object) for this new object.
            </summary>
            <param name="owner">The owner, or containing object, of this instance</param>
        </member>
        <member name="M:ZedGraph.LinearAsOrdinalScale.#ctor(ZedGraph.Scale,ZedGraph.Axis)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.LinearAsOrdinalScale"/> object from which to copy</param>
            <param name="owner">The <see cref="T:ZedGraph.Axis"/> object that will own the
            new instance of <see cref="T:ZedGraph.LinearAsOrdinalScale"/></param>
        </member>
        <member name="M:ZedGraph.LinearAsOrdinalScale.Clone(ZedGraph.Axis)">
            <summary>
            Create a new clone of the current item, with a new owner assignment
            </summary>
            <param name="owner">The new <see cref="T:ZedGraph.Axis"/> instance that will be
            the owner of the new Scale</param>
            <returns>A new <see cref="T:ZedGraph.Scale"/> clone.</returns>
        </member>
        <member name="M:ZedGraph.LinearAsOrdinalScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)">
            <summary>
            Select a reasonable ordinal axis scale given a range of data values, with the expectation that
            linear values will be displayed.
            </summary>
            <remarks>
            This method only applies to <see cref="F:ZedGraph.AxisType.DateAsOrdinal"/> type axes, and it
            is called by the general <see cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/> method.  For this type,
            the first curve is the "master", which contains the dates to be applied.
            <para>On Exit:</para>
            <para><see cref="P:ZedGraph.Scale.Min"/> is set to scale minimum (if <see cref="P:ZedGraph.Scale.MinAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Max"/> is set to scale maximum (if <see cref="P:ZedGraph.Scale.MaxAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MajorStep"/> is set to scale step size (if <see cref="P:ZedGraph.Scale.MajorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MinorStep"/> is set to scale minor step size (if <see cref="P:ZedGraph.Scale.MinorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Mag"/> is set to a magnitude multiplier according to the data</para>
            <para><see cref="P:ZedGraph.Scale.Format"/> is set to the display format for the values (this controls the
            number of decimal places, whether there are thousands separators, currency types, etc.)</para>
            </remarks>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object
            associated with this <see cref="T:ZedGraph.Axis"/></param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <seealso cref="M:ZedGraph.LinearAsOrdinalScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>
            <seealso cref="F:ZedGraph.AxisType.Ordinal"/>
        </member>
        <member name="M:ZedGraph.LinearAsOrdinalScale.MakeLabel(ZedGraph.GraphPane,System.Int32,System.Double)">
            <summary>
            Make a value label for an <see cref="F:ZedGraph.AxisType.LinearAsOrdinal"/> <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="index">
            The zero-based, ordinal index of the label to be generated.  For example, a value of 2 would
            cause the third value label on the axis to be generated.
            </param>
            <param name="dVal">
            The numeric value associated with the label.  This value is ignored for log (<see cref="P:ZedGraph.Scale.IsLog"/>)
            and text (<see cref="P:ZedGraph.Scale.IsText"/>) type axes.
            </param>
            <returns>The resulting value label as a <see cref="T:System.String"/></returns>
        </member>
        <member name="M:ZedGraph.LinearAsOrdinalScale.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.LinearAsOrdinalScale.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.LinearAsOrdinalScale.Type">
            <summary>
            Return the <see cref="T:ZedGraph.AxisType"/> for this <see cref="T:ZedGraph.Scale"/>, which is
            <see cref="F:ZedGraph.AxisType.LinearAsOrdinal"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.GasGuageNeedle">
            <summary>
            A class representing a needle on the GasGuage chart
            <see cref="T:ZedGraph.GasGuageNeedle"/>s.
            </summary>
            <author> Jay Mistry </author>
            <version> $Revision: 3.3 $ $Date: 2007/02/19 08:05:23 $ </version>
        </member>
        <member name="T:ZedGraph.CurveItem">
            <summary>
            This class contains the data and methods for an individual curve within
            a graph pane.  It carries the settings for the curve including the
            key and item names, colors, symbols and sizes, linetypes, etc.
            </summary>
            
            <author> John Champion
            modified by Jerry Vos </author>
            <version> $Revision: 3.39 $ $Date: 2007/03/11 02:08:16 $ </version>
        </member>
        <member name="F:ZedGraph.CurveItem.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.CurveItem._label">
            <summary>
            protected field that stores a <see cref="P:ZedGraph.CurveItem.Label"/> instance for this
            <see cref="T:ZedGraph.CurveItem"/>, which is used for the <see cref="T:ZedGraph.Legend"/>
            label.  Use the public
            property <see cref="P:ZedGraph.CurveItem.Label"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.CurveItem._isY2Axis">
            <summary>
            protected field that stores the boolean value that determines whether this
            <see cref="T:ZedGraph.CurveItem"/> is on the left Y axis or the right Y axis (Y2).
            Use the public property <see cref="P:ZedGraph.CurveItem.IsY2Axis"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.CurveItem._yAxisIndex">
            <summary>
            protected field that stores the index number of the Y Axis to which this
            <see cref="T:ZedGraph.CurveItem"/> belongs.  Use the public property <see cref="P:ZedGraph.CurveItem.YAxisIndex"/>
            to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.CurveItem._isVisible">
            <summary>
            protected field that stores the boolean value that determines whether this
            <see cref="T:ZedGraph.CurveItem"/> is visible on the graph.
            Use the public property <see cref="P:ZedGraph.CurveItem.IsVisible"/> to access this value.
            Note that this value turns the curve display on or off, but it does not
            affect the display of the legend entry.  To hide the legend entry, you
            have to set <see cref="P:ZedGraph.Label.IsVisible"/> to false.
            </summary>
        </member>
        <member name="F:ZedGraph.CurveItem._isSelected">
            <summary>
            Protected field that stores the boolean value that determines whether this
            <see cref="T:ZedGraph.CurveItem"/> is selected on the graph.
            Use the public property <see cref="P:ZedGraph.CurveItem.IsSelected"/> to access this value.
            Note that this value changes the curve display color, but it does not
            affect the display of the legend entry.  To hide the legend entry, you
            have to set <see cref="P:ZedGraph.Label.IsVisible"/> to false.
            </summary>
        </member>
        <member name="F:ZedGraph.CurveItem._isSelectable">
            <summary>
            Protected field that stores the boolean value that determines whether this
            <see cref="T:ZedGraph.CurveItem"/> can be selected in the graph.
            </summary>
        </member>
        <member name="F:ZedGraph.CurveItem._isOverrideOrdinal">
            <summary>
            protected field that stores a boolean value which allows you to override the normal
            ordinal axis behavior.  Use the public property <see cref="P:ZedGraph.CurveItem.IsOverrideOrdinal"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.CurveItem._points">
            <summary>
            The <see cref="T:ZedGraph.IPointList"/> of value sets that
            represent this <see cref="T:ZedGraph.CurveItem"/>.
            The size of this list determines the number of points that are
            plotted.  Note that values defined as
            System.Double.MaxValue are considered "missing" values
            (see <see cref="F:ZedGraph.PointPairBase.Missing"/>),
            and are not plotted.  The curve will have a break at these points
            to indicate the values are missing.
            </summary>
        </member>
        <member name="F:ZedGraph.CurveItem.Tag">
            <summary>
            A tag object for use by the user.  This can be used to store additional
            information associated with the <see cref="T:ZedGraph.CurveItem"/>.  ZedGraph does
            not use this value for any purpose.
            </summary>
            <remarks>
            Note that, if you are going to Serialize ZedGraph data, then any type
            that you store in <see cref="F:ZedGraph.CurveItem.Tag"/> must be a serializable type (or
            it will cause an exception).
            </remarks>
        </member>
        <member name="F:ZedGraph.CurveItem._link">
            <summary>
            Protected field that stores the hyperlink information for this object.
            </summary>
        </member>
        <member name="M:ZedGraph.CurveItem.#ctor(System.String,System.Double[],System.Double[])">
            <summary>
            <see cref="T:ZedGraph.CurveItem"/> constructor the pre-specifies the curve label, the
            x and y data values as a <see cref="T:ZedGraph.IPointList"/>, the curve
            type (Bar or Line/Symbol), the <see cref="P:ZedGraph.CurveItem.Color"/>, and the
            <see cref="T:ZedGraph.SymbolType"/>. Other properties of the curve are
            defaulted to the values in the <see cref="T:ZedGraph.GraphPane.Default"/> class.
            </summary>
            <param name="label">A string label (legend entry) for this curve</param>
            <param name="x">An array of double precision values that define
            the independent (X axis) values for this curve</param>
            <param name="y">An array of double precision values that define
            the dependent (Y axis) values for this curve</param>
        </member>
        <member name="M:ZedGraph.CurveItem.#ctor(System.String,ZedGraph.IPointList)">
            <summary>
            <see cref="T:ZedGraph.CurveItem"/> constructor the pre-specifies the curve label, the
            x and y data values as a <see cref="T:ZedGraph.IPointList"/>, the curve
            type (Bar or Line/Symbol), the <see cref="P:ZedGraph.CurveItem.Color"/>, and the
            <see cref="T:ZedGraph.SymbolType"/>. Other properties of the curve are
            defaulted to the values in the <see cref="T:ZedGraph.GraphPane.Default"/> class.
            </summary>
            <param name="label">A string label (legend entry) for this curve</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
        </member>
        <member name="M:ZedGraph.CurveItem.Init(System.String)">
            <summary>
            Internal initialization routine thats sets some initial values to defaults.
            </summary>
            <param name="label">A string label (legend entry) for this curve</param>
        </member>
        <member name="M:ZedGraph.CurveItem.#ctor(System.String)">
            <summary>
            <see cref="T:ZedGraph.CurveItem"/> constructor that specifies the label of the CurveItem.
            This is the same as <c>CurveItem(label, null, null)</c>.
            <seealso cref="M:ZedGraph.CurveItem.#ctor(System.String,System.Double[],System.Double[])"/>
            </summary>
            <param name="label">A string label (legend entry) for this curve</param>
        </member>
        <member name="M:ZedGraph.CurveItem.#ctor">
            <summary>
            
            </summary>
        </member>
        <member name="M:ZedGraph.CurveItem.#ctor(ZedGraph.CurveItem)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The CurveItem object from which to copy</param>
        </member>
        <member name="M:ZedGraph.CurveItem.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of Clone.
            </summary>
            <remarks>
            Note that this method must be called with an explicit cast to ICloneable, and
            that it is inherently virtual.  For example:
            <code>
            ParentClass foo = new ChildClass();
            ChildClass bar = (ChildClass) ((ICloneable)foo).Clone();
            </code>
            Assume that ChildClass is inherited from ParentClass.  Even though foo is declared with
            ParentClass, it is actually an instance of ChildClass.  Calling the ICloneable implementation
            of Clone() on foo actually calls ChildClass.Clone() as if it were a virtual function.
            </remarks>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.CurveItem.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.CurveItem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.CurveItem.IsZIncluded(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the Z data range should be included in the axis scaling calculations.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the Z data are included, false otherwise</value>
        </member>
        <member name="M:ZedGraph.CurveItem.IsXIndependent(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the X axis is the independent axis for this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the X axis is independent, false otherwise</value>
        </member>
        <member name="M:ZedGraph.CurveItem.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.CurveItem"/> to the specified
            <see cref="T:System.Drawing.Graphics"/> device.  This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.CurveList"/>
            collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="pos">The ordinal position of the current <see cref="T:ZedGraph.Bar"/>
            curve.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.CurveItem.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            Draw a legend key entry for this <see cref="T:ZedGraph.CurveItem"/> at the specified location.
            This abstract base method passes through to <see cref="M:ZedGraph.BarItem.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)"/> or
            <see cref="M:ZedGraph.LineItem.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)"/> to do the rendering.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="rect">The <see cref="T:System.Drawing.RectangleF"/> struct that specifies the
            location for the legend key</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.CurveItem.AddPoint(System.Double,System.Double)">
            <summary>
            Add a single x,y coordinate point to the end of the points collection for this curve.
            </summary>
            <param name="x">The X coordinate value</param>
            <param name="y">The Y coordinate value</param>
        </member>
        <member name="M:ZedGraph.CurveItem.AddPoint(ZedGraph.PointPair)">
            <summary>
            Add a <see cref="T:ZedGraph.PointPair"/> object to the end of the points collection for this curve.
            </summary>
            <remarks>
            This method will only work if the <see cref="T:ZedGraph.IPointList"/> instance reference
            at <see cref="P:ZedGraph.CurveItem.Points"/> supports the <see cref="T:ZedGraph.IPointListEdit"/> interface.
            Otherwise, it does nothing.
            </remarks>
            <param name="point">A reference to the <see cref="T:ZedGraph.PointPair"/> object to
            be added</param>
        </member>
        <member name="M:ZedGraph.CurveItem.Clear">
            <summary>
            Clears the points from this <see cref="T:ZedGraph.CurveItem"/>.  This is the same
            as <c>CurveItem.Points.Clear()</c>.
            </summary>
            <remarks>
            This method will only work if the <see cref="T:ZedGraph.IPointList"/> instance reference
            at <see cref="P:ZedGraph.CurveItem.Points"/> supports the <see cref="T:ZedGraph.IPointListEdit"/> interface.
            Otherwise, it does nothing.
            </remarks>
        </member>
        <member name="M:ZedGraph.CurveItem.RemovePoint(System.Int32)">
            <summary>
            Removes a single point from this <see cref="T:ZedGraph.CurveItem"/>.
            </summary>
            <remarks>
            This method will only work if the <see cref="T:ZedGraph.IPointList"/> instance reference
            at <see cref="P:ZedGraph.CurveItem.Points"/> supports the <see cref="T:ZedGraph.IPointListEdit"/> interface.
            Otherwise, it does nothing.
            </remarks>
            <param name="index">The ordinal position of the point to be removed.</param>
        </member>
        <member name="M:ZedGraph.CurveItem.GetYAxis(ZedGraph.GraphPane)">
            <summary>
            Get the Y Axis instance (either <see cref="T:ZedGraph.YAxis"/> or <see cref="T:ZedGraph.Y2Axis"/>) to
            which this <see cref="T:ZedGraph.CurveItem"/> belongs.
            </summary>
            <remarks>
            This method safely retrieves a Y Axis instance from either the <see cref="P:ZedGraph.GraphPane.YAxisList"/>
            or the <see cref="P:ZedGraph.GraphPane.Y2AxisList"/> using the values of <see cref="P:ZedGraph.CurveItem.YAxisIndex"/> and
            <see cref="P:ZedGraph.CurveItem.IsY2Axis"/>.  If the value of <see cref="P:ZedGraph.CurveItem.YAxisIndex"/> is out of bounds, the
            default <see cref="T:ZedGraph.YAxis"/> or <see cref="T:ZedGraph.Y2Axis"/> is used.
            </remarks>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> object to which this curve belongs.</param>
            <returns>Either a <see cref="T:ZedGraph.YAxis"/> or <see cref="T:ZedGraph.Y2Axis"/> to which this
            <see cref="T:ZedGraph.CurveItem"/> belongs.
            </returns>
        </member>
        <member name="M:ZedGraph.CurveItem.GetYAxisIndex(ZedGraph.GraphPane)">
            <summary>
            Get the index of the Y Axis in the <see cref="T:ZedGraph.YAxis"/> or <see cref="T:ZedGraph.Y2Axis"/> list to
            which this <see cref="T:ZedGraph.CurveItem"/> belongs.
            </summary>
            <remarks>
            This method safely retrieves a Y Axis index into either the <see cref="P:ZedGraph.GraphPane.YAxisList"/>
            or the <see cref="P:ZedGraph.GraphPane.Y2AxisList"/> using the values of <see cref="P:ZedGraph.CurveItem.YAxisIndex"/> and
            <see cref="P:ZedGraph.CurveItem.IsY2Axis"/>.  If the value of <see cref="P:ZedGraph.CurveItem.YAxisIndex"/> is out of bounds, the
            default <see cref="T:ZedGraph.YAxis"/> or <see cref="T:ZedGraph.Y2Axis"/> is used, which is index zero.
            </remarks>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> object to which this curve belongs.</param>
            <returns>An integer value indicating which index position in the list applies to this
            <see cref="T:ZedGraph.CurveItem"/>
            </returns>
        </member>
        <member name="M:ZedGraph.CurveItem.MakeUnique">
            <summary>
            Loads some pseudo unique colors/symbols into this CurveItem.  This
            is the same as <c>MakeUnique(ColorSymbolRotator.StaticInstance)</c>.
            <seealso cref="P:ZedGraph.ColorSymbolRotator.StaticInstance"/>
            <seealso cref="T:ZedGraph.ColorSymbolRotator"/>
            <seealso cref="M:ZedGraph.CurveItem.MakeUnique(ZedGraph.ColorSymbolRotator)"/>
            </summary>
        </member>
        <member name="M:ZedGraph.CurveItem.MakeUnique(ZedGraph.ColorSymbolRotator)">
            <summary>
            Loads some pseudo unique colors/symbols into this CurveItem.  This
            is mainly useful for differentiating a set of new CurveItems without
            having to pick your own colors/symbols.
            <seealso cref="M:ZedGraph.CurveItem.MakeUnique(ZedGraph.ColorSymbolRotator)"/>
            </summary>
            <param name="rotator">
            The <see cref="T:ZedGraph.ColorSymbolRotator"/> that is used to pick the color
             and symbol for this method call.
            </param>
        </member>
        <member name="M:ZedGraph.CurveItem.GetRange(System.Double@,System.Double@,System.Double@,System.Double@,System.Boolean,System.Boolean,ZedGraph.GraphPane)">
            <summary>
            Go through the list of <see cref="T:ZedGraph.PointPair"/> data values for this <see cref="T:ZedGraph.CurveItem"/>
            and determine the minimum and maximum values in the data.
            </summary>
            <param name="xMin">The minimum X value in the range of data</param>
            <param name="xMax">The maximum X value in the range of data</param>
            <param name="yMin">The minimum Y value in the range of data</param>
            <param name="yMax">The maximum Y value in the range of data</param>
            <param name="ignoreInitial">ignoreInitial is a boolean value that
            affects the data range that is considered for the automatic scale
            ranging (see <see cref="P:ZedGraph.GraphPane.IsIgnoreInitial"/>).  If true, then initial
            data points where the Y value is zero are not included when
            automatically determining the scale <see cref="P:ZedGraph.Scale.Min"/>,
            <see cref="P:ZedGraph.Scale.Max"/>, and <see cref="P:ZedGraph.Scale.MajorStep"/> size.  All data after
            the first non-zero Y value are included.
            </param>
            <param name="isBoundedRanges">
            Determines if the auto-scaled axis ranges will subset the
            data points based on any manually set scale range values.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <seealso cref="P:ZedGraph.GraphPane.IsBoundedRanges"/>
        </member>
        <member name="M:ZedGraph.CurveItem.BaseAxis(ZedGraph.GraphPane)">
            <summary>Returns a reference to the <see cref="T:ZedGraph.Axis"/> object that is the "base"
            (independent axis) from which the values are drawn. </summary>
            <remarks>
            This property is determined by the value of <see cref="P:ZedGraph.BarSettings.Base"/> for
            <see cref="T:ZedGraph.BarItem"/>, <see cref="T:ZedGraph.ErrorBarItem"/>, and <see cref="T:ZedGraph.HiLowBarItem"/>
            types.  It is always the X axis for regular <see cref="T:ZedGraph.LineItem"/> types.
            Note that the <see cref="P:ZedGraph.BarSettings.Base"/> setting can override the
            <see cref="P:ZedGraph.CurveItem.IsY2Axis"/> and <see cref="P:ZedGraph.CurveItem.YAxisIndex"/> settings for bar types
            (this is because all the bars that are clustered together must share the
            same base axis).
            </remarks>
            <seealso cref="T:ZedGraph.BarBase"/>
            <seealso cref="M:ZedGraph.CurveItem.ValueAxis(ZedGraph.GraphPane)"/>
        </member>
        <member name="M:ZedGraph.CurveItem.ValueAxis(ZedGraph.GraphPane)">
            <summary>Returns a reference to the <see cref="T:ZedGraph.Axis"/> object that is the "value"
            (dependent axis) from which the points are drawn. </summary>
            <remarks>
            This property is determined by the value of <see cref="P:ZedGraph.BarSettings.Base"/> for
            <see cref="T:ZedGraph.BarItem"/>, <see cref="T:ZedGraph.ErrorBarItem"/>, and <see cref="T:ZedGraph.HiLowBarItem"/>
            types.  It is always the Y axis for regular <see cref="T:ZedGraph.LineItem"/> types.
            </remarks>
            <seealso cref="T:ZedGraph.BarBase"/>
            <seealso cref="M:ZedGraph.CurveItem.BaseAxis(ZedGraph.GraphPane)"/>
        </member>
        <member name="M:ZedGraph.CurveItem.GetBarWidth(ZedGraph.GraphPane)">
            <summary>
            Calculate the width of each bar, depending on the actual bar type
            </summary>
            <returns>The width for an individual bar, in pixel units</returns>
        </member>
        <member name="M:ZedGraph.CurveItem.GetCoords(ZedGraph.GraphPane,System.Int32,System.String@)">
            <summary>
            Determine the coords for the rectangle associated with a specified point for 
            this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> to which this curve belongs</param>
            <param name="i">The index of the point of interest</param>
            <param name="coords">A list of coordinates that represents the "rect" for
            this point (used in an html AREA tag)</param>
            <returns>true if it's a valid point, false otherwise</returns>
        </member>
        <member name="P:ZedGraph.CurveItem.Label">
            <summary>
            A <see cref="P:ZedGraph.CurveItem.Label"/> instance that represents the <see cref="T:ZedGraph.Legend"/>
            entry for the this <see cref="T:ZedGraph.CurveItem"/> object
            </summary>
        </member>
        <member name="P:ZedGraph.CurveItem.Color">
            <summary>
            The <see cref="T:ZedGraph.Line"/>/<see cref="T:ZedGraph.Symbol"/>/<see cref="T:ZedGraph.Bar"/> 
            color (FillColor for the Bar).  This is a common access to
            <see cref="P:ZedGraph.LineBase.Color">Line.Color</see>,
            <see cref="P:ZedGraph.LineBase.Color">Border.Color</see>, and
            <see cref="P:ZedGraph.Fill.Color">Fill.Color</see> properties for this curve.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveItem.IsVisible">
            <summary>
            Determines whether this <see cref="T:ZedGraph.CurveItem"/> is visible on the graph.
            Note that this value turns the curve display on or off, but it does not
            affect the display of the legend entry.  To hide the legend entry, you
            have to set <see cref="P:ZedGraph.Label.IsVisible"/> to false.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveItem.IsSelected">
            <summary>
            Determines whether this <see cref="T:ZedGraph.CurveItem"/> is selected on the graph.
            Note that this value changes the curve displayed color, but it does not
            affect the display of the legend entry. To hide the legend entry, you
            have to set <see cref="P:ZedGraph.Label.IsVisible"/> to false.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveItem.IsSelectable">
            <summary>
            Determines whether this <see cref="T:ZedGraph.CurveItem"/> can be selected in the graph.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveItem.IsOverrideOrdinal">
            <summary>
            Gets or sets a value which allows you to override the normal
            ordinal axis behavior.
            </summary>
            <remarks>
            Normally for an ordinal axis type, the actual data values corresponding to the ordinal
            axis will be ignored (essentially they are replaced by ordinal values, e.g., 1, 2, 3, etc).
            If IsOverrideOrdinal is true, then the user data values will be used (even if they don't
            make sense).  Fractional values are allowed, such that a value of 1.5 is between the first and
            second ordinal position, etc.
            </remarks>
            <seealso cref="F:ZedGraph.AxisType.Ordinal"/>
            <seealso cref="F:ZedGraph.AxisType.Text"/>
        </member>
        <member name="P:ZedGraph.CurveItem.IsY2Axis">
            <summary>
            Gets or sets a value that determines which Y axis this <see cref="T:ZedGraph.CurveItem"/>
            is assigned to.
            </summary>
            <remarks>
            The
            <see cref="T:ZedGraph.YAxis"/> is on the left side of the graph and the
            <see cref="T:ZedGraph.Y2Axis"/> is on the right side.  Assignment to an axis
            determines the scale that is used to draw the curve on the graph.  Note that
            this value is used in combination with the <see cref="P:ZedGraph.CurveItem.YAxisIndex"/> to determine
            which of the Y Axes (if there are multiples) this curve belongs to.
            </remarks>
            <value>true to assign the curve to the <see cref="T:ZedGraph.Y2Axis"/>,
            false to assign the curve to the <see cref="T:ZedGraph.YAxis"/></value>
        </member>
        <member name="P:ZedGraph.CurveItem.YAxisIndex">
            <summary>
            Gets or sets the index number of the Y Axis to which this
            <see cref="T:ZedGraph.CurveItem"/> belongs.
            </summary>
            <remarks>
            This value is essentially an index number into the <see cref="P:ZedGraph.GraphPane.YAxisList"/>
            or <see cref="P:ZedGraph.GraphPane.Y2AxisList"/>, depending on the setting of
            <see cref="P:ZedGraph.CurveItem.IsY2Axis"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.CurveItem.IsBar">
            <summary>
            Determines whether this <see cref="T:ZedGraph.CurveItem"/>
            is a <see cref="T:ZedGraph.BarItem"/>.  This does not include <see cref="T:ZedGraph.HiLowBarItem"/>'s
            or <see cref="T:ZedGraph.ErrorBarItem"/>'s.
            </summary>
            <value>true for a bar chart, or false for a line or pie graph</value>
        </member>
        <member name="P:ZedGraph.CurveItem.IsPie">
            <summary>
            Determines whether this <see cref="T:ZedGraph.CurveItem"/>
            is a <see cref="T:ZedGraph.PieItem"/>.
            </summary>
            <value>true for a pie chart, or false for a line or bar graph</value>
        </member>
        <member name="P:ZedGraph.CurveItem.IsLine">
            <summary>
            Determines whether this <see cref="T:ZedGraph.CurveItem"/>
            is a <see cref="T:ZedGraph.LineItem"/>.
            </summary>
            <value>true for a line chart, or false for a bar type</value>
        </member>
        <member name="P:ZedGraph.CurveItem.NPts">
            <summary>
            Readonly property that gives the number of points that define this
            <see cref="T:ZedGraph.CurveItem"/> object, which is the number of points in the
            <see cref="P:ZedGraph.CurveItem.Points"/> data collection.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveItem.Points">
            <summary>
            The <see cref="T:ZedGraph.IPointList"/> of X,Y point sets that represent this
            <see cref="T:ZedGraph.CurveItem"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveItem.Item(System.Int32)">
            <summary>
            An accessor for the <see cref="T:ZedGraph.PointPair"/> datum for this <see cref="T:ZedGraph.CurveItem"/>.
            Index is the ordinal reference (zero based) of the point.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveItem.Link">
            <summary>
            Gets or sets the hyperlink information for this <see cref="T:ZedGraph.CurveItem"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.CurveItem.Comparer">
            <summary>
            Compares <see cref="T:ZedGraph.CurveItem"/>'s based on the point value at the specified
            index and for the specified axis.
            <seealso cref="M:System.Collections.ArrayList.Sort"/>
            </summary>
        </member>
        <member name="M:ZedGraph.CurveItem.Comparer.#ctor(ZedGraph.SortType,System.Int32)">
            <summary>
            Constructor for Comparer.
            </summary>
            <param name="type">The axis type on which to sort.</param>
            <param name="index">The index number of the point on which to sort</param>
        </member>
        <member name="M:ZedGraph.CurveItem.Comparer.Compare(ZedGraph.CurveItem,ZedGraph.CurveItem)">
            <summary>
            Compares two <see cref="T:ZedGraph.CurveItem"/>s using the previously specified index value
            and axis.  Sorts in descending order.
            </summary>
            <param name="l">Curve to the left.</param>
            <param name="r">Curve to the right.</param>
            <returns>-1, 0, or 1 depending on l.X's relation to r.X</returns>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle._needleValue">
            <summary>
            Value of this needle
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle._needleWidth">
            <summary>
            Width of the line being drawn
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle._color">
            <summary>
            Color of the needle line
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle._sweepAngle">
            <summary>
            Internally calculated angle that places this needle relative to the MinValue and
            MaxValue of 180 degree GasGuage
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle._fill">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.GasGuageNeedle"/>. Use the public property <see cref="P:ZedGraph.GasGuageNeedle.Fill"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle._labelDetail">
            <summary>
            A <see cref="T:ZedGraph.TextObj"/> which will customize the label display of this
            <see cref="T:ZedGraph.GasGuageNeedle"/>
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle._border">
            <summary>
            Private field that stores the <see cref="P:ZedGraph.GasGuageNeedle.Border"/> class that defines the
            properties of the border around this <see cref="T:ZedGraph.GasGuageNeedle"/>. Use the public
            property <see cref="P:ZedGraph.GasGuageNeedle.Border"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle._boundingRectangle">
            <summary>
            The bounding rectangle for this <see cref="T:ZedGraph.GasGuageNeedle"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle._slicePath">
            <summary>
            Private field to hold the GraphicsPath of this <see cref="T:ZedGraph.GasGuageNeedle"/> to be
            used for 'hit testing'.
            </summary>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.#ctor(System.String,System.Double,System.Drawing.Color)">
            <summary>
            Create a new <see cref="T:ZedGraph.GasGuageNeedle"/>
            </summary>
            <param name="label">The value associated with this <see cref="T:ZedGraph.GasGuageNeedle"/>
            instance.</param>
            <param name="color">The display color for this <see cref="T:ZedGraph.GasGuageNeedle"/>
            instance.</param>
            <param name="val">The value of this <see cref="T:ZedGraph.GasGuageNeedle"/>.</param>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.#ctor(ZedGraph.GasGuageNeedle)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="ggn">The <see cref="T:ZedGraph.GasGuageNeedle"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.GasGuageNeedle.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.IsZIncluded(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the Z data range should be included in the axis scaling calculations.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the Z data are included, false otherwise</value>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.IsXIndependent(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the X axis is the independent axis for this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the X axis is independent, false otherwise</value>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.GasGuageNeedle"/> item to the specified
            <see cref="T:System.Drawing.Graphics"/> device. This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.CurveList"/>
            collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into. This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="pos">Not used for rendering GasGuageNeedle</param>
            <param name="scaleFactor">Not used for rendering GasGuageNeedle</param>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            Render the label for this <see cref="T:ZedGraph.GasGuageNeedle"/>.
            </summary>
            <param name="g">
            A graphic device object to be drawn into. This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A graphic device object to be drawn into. This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="rect">Bounding rectangle for this <see cref="T:ZedGraph.GasGuageNeedle"/>.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects. This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param> 
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.GetCoords(ZedGraph.GraphPane,System.Int32,System.String@)">
            <summary>
            Determine the coords for the rectangle associated with a specified point for 
            this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> to which this curve belongs</param>
            <param name="i">The index of the point of interest</param>
            <param name="coords">A list of coordinates that represents the "rect" for
            this point (used in an html AREA tag)</param>
            <returns>true if it's a valid point, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.CalculateGasGuageParameters(ZedGraph.GraphPane)">
            <summary>
            Calculate the values needed to properly display this <see cref="T:ZedGraph.GasGuageNeedle"/>.
            </summary>
            <param name="pane">
            A graphic device object to be drawn into. This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
        </member>
        <member name="M:ZedGraph.GasGuageNeedle.CalcRectangle(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Drawing.RectangleF)">
            <summary>
            Calculate the <see cref="T:System.Drawing.RectangleF"/> that will be used to define the bounding rectangle of
            the GasGuageNeedle.
            </summary>
            <remarks>This rectangle always lies inside of the <see cref="P:ZedGraph.Chart.Rect"/>, and it is
            normally a square so that the pie itself is not oval-shaped.</remarks>
            <param name="g">
            A graphic device object to be drawn into. This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects. This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param> 
            <param name="chartRect">The <see cref="T:System.Drawing.RectangleF"/> (normally the <see cref="P:ZedGraph.Chart.Rect"/>)
            that bounds this pie.</param>
            <returns></returns>
        </member>
        <member name="P:ZedGraph.GasGuageNeedle.NeedleWidth">
            <summary>
            Gets or Sets the NeedleWidth of this <see cref="T:ZedGraph.GasGuageNeedle"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGuageNeedle.Border">
            <summary>
            Gets or Sets the Border of this <see cref="T:ZedGraph.GasGuageNeedle"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGuageNeedle.SlicePath">
            <summary>
            Gets or Sets the SlicePath of this <see cref="T:ZedGraph.GasGuageNeedle"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGuageNeedle.LabelDetail">
            <summary>
            Gets or Sets the LableDetail of this <see cref="T:ZedGraph.GasGuageNeedle"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGuageNeedle.NeedleColor">
            <summary>
            Gets or Sets the NeedelColor of this <see cref="T:ZedGraph.GasGuageNeedle"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGuageNeedle.Fill">
            <summary>
            Gets or Sets the Fill of this <see cref="T:ZedGraph.GasGuageNeedle"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGuageNeedle.SweepAngle">
            <summary>
            Private property that Gets or Sets the SweepAngle of this <see cref="T:ZedGraph.GasGuageNeedle"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGuageNeedle.NeedleValue">
            <summary>
            Gets or Sets the NeedleValue of this <see cref="T:ZedGraph.GasGuageNeedle"/>
            </summary>
        </member>
        <member name="T:ZedGraph.GasGuageNeedle.Default">
            <summary>
            Specify the default property values for the <see cref="T:ZedGraph.GasGuageNeedle"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle.Default.NeedleWidth">
            <summary>
            The default width of the gas gauge needle.  Units are points, scaled according
            to <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle.Default.BorderWidth">
            <summary>
            The default pen width to be used for drawing the border around the GasGuageNeedle
            (<see cref="P:ZedGraph.LineBase.Width"/> property). Units are points.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle.Default.IsBorderVisible">
            <summary>
            The default border mode for GasGuageNeedle (<see cref="P:ZedGraph.LineBase.IsVisible"/>
            property).
            true to display frame around GasGuageNeedle, false otherwise
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle.Default.BorderColor">
            <summary>
            The default color for drawing frames around GasGuageNeedle
            (<see cref="P:ZedGraph.LineBase.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle.Default.FillType">
            <summary>
            The default fill type for filling the GasGaugeNeedle.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle.Default.FillColor">
            <summary>
            The default color for filling in the GasGuageNeedle
            (<see cref="P:ZedGraph.Fill.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle.Default.FillBrush">
            <summary>
            The default custom brush for filling in the GasGuageNeedle.
            (<see cref="P:ZedGraph.Fill.Brush"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle.Default.isVisible">
             <summary>
            Default value for controlling <see cref="T:ZedGraph.GasGuageNeedle"/> display.
             </summary>
        </member>
        <member name="F:ZedGraph.GasGuageNeedle.Default.FontSize">
            <summary>
            The default font size for <see cref="P:ZedGraph.GasGuageNeedle.LabelDetail"/> entries
            (<see cref="P:ZedGraph.FontSpec.Size"/> property). Units are
            in points (1/72 inch).
            </summary>
        </member>
        <member name="T:ZedGraph.DateScale">
            <summary>
            The DateScale class inherits from the <see cref="T:ZedGraph.Scale"/> class, and implements
            the features specific to <see cref="F:ZedGraph.AxisType.Date"/>.
            </summary>
            <remarks>
            DateScale is a cartesian axis with calendar dates or times.  The actual data values should
            be created with the <see cref="T:ZedGraph.XDate"/> type, which is directly translatable to a
            <see cref="T:System.Double"/> type for storage in the point value arrays.
            </remarks>
            
            <author> John Champion  </author>
            <version> $Revision: 1.13 $ $Date: 2007/03/11 02:08:16 $ </version>
        </member>
        <member name="F:ZedGraph.DateScale.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.DateScale.#ctor(ZedGraph.Axis)">
            <summary>
            Default constructor that defines the owner <see cref="T:ZedGraph.Axis"/>
            (containing object) for this new object.
            </summary>
            <param name="owner">The owner, or containing object, of this instance</param>
        </member>
        <member name="M:ZedGraph.DateScale.#ctor(ZedGraph.Scale,ZedGraph.Axis)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.DateScale"/> object from which to copy</param>
            <param name="owner">The <see cref="T:ZedGraph.Axis"/> object that will own the
            new instance of <see cref="T:ZedGraph.DateScale"/></param>
        </member>
        <member name="M:ZedGraph.DateScale.Clone(ZedGraph.Axis)">
            <summary>
            Create a new clone of the current item, with a new owner assignment
            </summary>
            <param name="owner">The new <see cref="T:ZedGraph.Axis"/> instance that will be
            the owner of the new Scale</param>
            <returns>A new <see cref="T:ZedGraph.Scale"/> clone.</returns>
        </member>
        <member name="M:ZedGraph.DateScale.CalcMajorTicValue(System.Double,System.Double)">
            <summary>
            Determine the value for any major tic.
            </summary>
            <remarks>
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <param name="baseVal">
            The value of the first major tic (floating point double)
            </param>
            <param name="tic">
            The major tic number (0 = first major tic).  For log scales, this is the actual power of 10.
            </param>
            <returns>
            The specified major tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.DateScale.CalcMinorTicValue(System.Double,System.Int32)">
            <summary>
            Determine the value for any minor tic.
            </summary>
            <remarks>
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <param name="baseVal">
            The value of the first major tic (floating point double).  This tic value is the base
            reference for all tics (including minor ones).
            </param>
            <param name="iTic">
            The major tic number (0 = first major tic).  For log scales, this is the actual power of 10.
            </param>
            <returns>
            The specified minor tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.DateScale.CalcMinorStart(System.Double)">
            <summary>
            Internal routine to determine the ordinals of the first minor tic mark
            </summary>
            <param name="baseVal">
            The value of the first major tic for the axis.
            </param>
            <returns>
            The ordinal position of the first minor tic, relative to the first major tic.
            This value can be negative (e.g., -3 means the first minor tic is 3 minor step
            increments before the first major tic.
            </returns>
        </member>
        <member name="M:ZedGraph.DateScale.CalcBaseTic">
            <summary>
            Determine the value for the first major tic.
            </summary>
            <remarks>
            This is done by finding the first possible value that is an integral multiple of
            the step size, taking into account the date/time units if appropriate.
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <returns>
            First major tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.DateScale.CalcNumTics">
            <summary>
            Internal routine to determine the ordinals of the first and last major axis label.
            </summary>
            <returns>
            This is the total number of major tics for this axis.
            </returns>
        </member>
        <member name="M:ZedGraph.DateScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)">
            <summary>
            Select a reasonable date-time axis scale given a range of data values.
            </summary>
            <remarks>
            This method only applies to <see cref="F:ZedGraph.AxisType.Date"/> type axes, and it
            is called by the general <see cref="M:ZedGraph.DateScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/> method.  The scale range is chosen
            based on increments of 1, 2, or 5 (because they are even divisors of 10).
            Note that the <see cref="P:ZedGraph.Scale.MajorStep"/> property setting can have multiple unit
            types (<see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/>),
            but the <see cref="P:ZedGraph.Scale.Min"/> and
            <see cref="P:ZedGraph.Scale.Max"/> units are always days (<see cref="T:ZedGraph.XDate"/>).  This
            method honors the <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/> autorange settings.
            In the event that any of the autorange settings are false, the
            corresponding <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>, or <see cref="P:ZedGraph.Scale.MajorStep"/>
            setting is explicitly honored, and the remaining autorange settings (if any) will
            be calculated to accomodate the non-autoranged values.  The basic default for
            scale selection is defined with
            <see cref="F:ZedGraph.Scale.Default.TargetXSteps"/> and <see cref="F:ZedGraph.Scale.Default.TargetYSteps"/>
            from the <see cref="T:ZedGraph.Scale.Default"/> default class.
            <para>On Exit:</para>
            <para><see cref="P:ZedGraph.Scale.Min"/> is set to scale minimum (if <see cref="P:ZedGraph.Scale.MinAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Max"/> is set to scale maximum (if <see cref="P:ZedGraph.Scale.MaxAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MajorStep"/> is set to scale step size (if <see cref="P:ZedGraph.Scale.MajorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MinorStep"/> is set to scale minor step size (if <see cref="P:ZedGraph.Scale.MinorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Mag"/> is set to a magnitude multiplier according to the data</para>
            <para><see cref="P:ZedGraph.Scale.Format"/> is set to the display format for the values (this controls the
            number of decimal places, whether there are thousands separators, currency types, etc.)</para>
            </remarks>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object
            associated with this <see cref="T:ZedGraph.Axis"/></param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <seealso cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>
            <seealso cref="F:ZedGraph.AxisType.Date"/>
            <seealso cref="P:ZedGraph.Scale.MajorUnit"/>
            <seealso cref="P:ZedGraph.Scale.MinorUnit"/>
        </member>
        <member name="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double)">
            <summary>
            Calculate a step size for a <see cref="F:ZedGraph.AxisType.Date"/> scale.
            This method is used by <see cref="M:ZedGraph.DateScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>.
            </summary>
            <param name="range">The range of data in units of days</param>
            <param name="targetSteps">The desired "typical" number of steps
            to divide the range into</param>
            <returns>The calculated step size for the specified data range.  Also
            calculates and sets the values for <see cref="P:ZedGraph.Scale.MajorUnit"/>,
            <see cref="P:ZedGraph.Scale.MinorUnit"/>, <see cref="P:ZedGraph.Scale.MinorStep"/>, and
            <see cref="P:ZedGraph.Scale.Format"/></returns>
        </member>
        <member name="M:ZedGraph.DateScale.CalcDateStepSize(System.Double,System.Double,ZedGraph.Scale)">
            <summary>
            Calculate a step size for a <see cref="F:ZedGraph.AxisType.Date"/> scale.
            This method is used by <see cref="M:ZedGraph.DateScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>.
            </summary>
            <param name="range">The range of data in units of days</param>
            <param name="targetSteps">The desired "typical" number of steps
            to divide the range into</param>
            <param name="scale">
            The <see cref="T:ZedGraph.Scale"/> object on which to calculate the Date step size.</param>
            <returns>The calculated step size for the specified data range.  Also
            calculates and sets the values for <see cref="P:ZedGraph.Scale.MajorUnit"/>,
            <see cref="P:ZedGraph.Scale.MinorUnit"/>, <see cref="P:ZedGraph.Scale.MinorStep"/>, and
            <see cref="P:ZedGraph.Scale.Format"/></returns>
        </member>
        <member name="M:ZedGraph.DateScale.CalcEvenStepDate(System.Double,System.Int32)">
            <summary>
            Calculate a date that is close to the specified date and an
            even multiple of the selected
            <see cref="P:ZedGraph.Scale.MajorUnit"/> for a <see cref="F:ZedGraph.AxisType.Date"/> scale.
            This method is used by <see cref="M:ZedGraph.DateScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>.
            </summary>
            <param name="date">The date which the calculation should be close to</param>
            <param name="direction">The desired direction for the date to take.
            1 indicates the result date should be greater than the specified
            date parameter.  -1 indicates the other direction.</param>
            <returns>The calculated date</returns>
        </member>
        <member name="M:ZedGraph.DateScale.MakeLabel(ZedGraph.GraphPane,System.Int32,System.Double)">
            <summary>
            Make a value label for an <see cref="F:ZedGraph.AxisType.Date"/> <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="index">
            The zero-based, ordinal index of the label to be generated.  For example, a value of 2 would
            cause the third value label on the axis to be generated.
            </param>
            <param name="dVal">
            The numeric value associated with the label.  This value is ignored for log (<see cref="P:ZedGraph.Scale.IsLog"/>)
            and text (<see cref="P:ZedGraph.Scale.IsText"/>) type axes.
            </param>
            <returns>The resulting value label as a <see cref="T:System.String"/></returns>
        </member>
        <member name="M:ZedGraph.DateScale.GetUnitMultiple(ZedGraph.DateUnit)">
            <summary>
            Internal routine to calculate a multiplier to the selected unit back to days.
            </summary>
            <param name="unit">The unit type for which the multiplier is to be
            calculated</param>
            <returns>
            This is ratio of days/selected unit
            </returns>
        </member>
        <member name="M:ZedGraph.DateScale.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.DateScale.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.DateScale.Type">
            <summary>
            Return the <see cref="T:ZedGraph.AxisType"/> for this <see cref="T:ZedGraph.Scale"/>, which is
            <see cref="F:ZedGraph.AxisType.Date"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.DateScale.Min">
            <summary>
            Gets or sets the minimum value for this scale.
            </summary>
            <remarks>
            The set property is specifically adapted for <see cref="F:ZedGraph.AxisType.Date"/> scales,
            in that it automatically limits the value to the range of valid dates for the
            <see cref="T:ZedGraph.XDate"/> struct.
            </remarks>
        </member>
        <member name="P:ZedGraph.DateScale.Max">
            <summary>
            Gets or sets the maximum value for this scale.
            </summary>
            <remarks>
            The set property is specifically adapted for <see cref="F:ZedGraph.AxisType.Date"/> scales,
            in that it automatically limits the value to the range of valid dates for the
            <see cref="T:ZedGraph.XDate"/> struct.
            </remarks>
        </member>
        <member name="P:ZedGraph.DateScale.MajorUnitMultiplier">
            <summary>
            Gets the major unit multiplier for this scale type, if any.
            </summary>
            <remarks>The major unit multiplier will correct the units of
            <see cref="P:ZedGraph.Scale.MajorStep"/> to match the units of <see cref="P:ZedGraph.Scale.Min"/>
            and <see cref="P:ZedGraph.Scale.Max"/>.  This reflects the setting of
            <see cref="P:ZedGraph.Scale.MajorUnit"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.DateScale.MinorUnitMultiplier">
            <summary>
            Gets the minor unit multiplier for this scale type, if any.
            </summary>
            <remarks>The minor unit multiplier will correct the units of
            <see cref="P:ZedGraph.Scale.MinorStep"/> to match the units of <see cref="P:ZedGraph.Scale.Min"/>
            and <see cref="P:ZedGraph.Scale.Max"/>.  This reflects the setting of
            <see cref="P:ZedGraph.Scale.MinorUnit"/>.
            </remarks>
        </member>
        <member name="T:ZedGraph.OHLCBar">
            <summary>
            This class handles the drawing of the curve <see cref="T:ZedGraph.OHLCBar"/> objects.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.4 $ $Date: 2007/03/17 18:43:44 $ </version>
        </member>
        <member name="T:ZedGraph.LineBase">
            <summary>
            A class that handles the basic attributes of a line segment.
            </summary>
            <remarks>
            This is the base class for <see cref="T:ZedGraph.Line"/> and <see cref="T:ZedGraph.Border"/> classes.
            </remarks>
            <author> John Champion </author>
            <version> $Revision: 3.2 $ $Date: 2007/03/17 18:43:44 $ </version>
        </member>
        <member name="F:ZedGraph.LineBase.schema0">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase._width">
            <summary>
            Private field that stores the pen width for this line.
            Use the public property <see cref="P:ZedGraph.LineBase.Width"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase._style">
            <summary>
            Private field that stores the <see cref="T:System.Drawing.Drawing2D.DashStyle"/> for this
            line.  Use the public
            property <see cref="P:ZedGraph.LineBase.Style"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase._dashOn">
            <summary>
            private field that stores the "Dash On" length for drawing the line.  Use the
            public property <see cref="P:ZedGraph.LineBase.DashOn"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase._dashOff">
            <summary>
            private field that stores the "Dash Off" length for drawing the line.  Use the
            public property <see cref="P:ZedGraph.LineBase.DashOff"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase._isVisible">
            <summary>
            Private field that stores the visibility of this line.  Use the public
            property <see cref="P:ZedGraph.LineBase.IsVisible"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase._isAntiAlias">
            <summary>
            private field that determines if the line is drawn using
            Anti-Aliasing capabilities from the <see cref="T:System.Drawing.Graphics"/> class.
            Use the public property <see cref="P:ZedGraph.LineBase.IsAntiAlias"/> to access
            this value.
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase._color">
            <summary>
            Private field that stores the color of this line.  Use the public
            property <see cref="P:ZedGraph.LineBase.Color"/> to access this value.  If this value is
            false, the line will not be shown (but the <see cref="T:ZedGraph.Symbol"/> may
            still be shown).
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase._gradientFill">
            <summary>
            Internal field that stores a custom <see cref="T:ZedGraph.Fill"/> class.  This
            fill is used strictly for <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/>, <see cref="F:ZedGraph.FillType.GradientByZ"/>,
            and <see cref="F:ZedGraph.FillType.GradientByColorValue"/> calculations to determine
            the color of the line.
            </summary>
        </member>
        <member name="M:ZedGraph.LineBase.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.LineBase"/> properties to default
            values as defined in the <see cref="T:ZedGraph.LineBase.Default"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.LineBase.#ctor(System.Drawing.Color)">
            <summary>
            Constructor that sets the color property to the specified value, and sets
            the remaining <see cref="T:ZedGraph.LineBase"/> properties to default
            values as defined in the <see cref="T:ZedGraph.LineBase.Default"/> class.
            </summary>
            <param name="color">The color to assign to this new Line object</param>
        </member>
        <member name="M:ZedGraph.LineBase.#ctor(ZedGraph.LineBase)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The LineBase object from which to copy</param>
        </member>
        <member name="M:ZedGraph.LineBase.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of Clone.
            </summary>
            <remarks>
            Note that this method must be called with an explicit cast to ICloneable, and
            that it is inherently virtual.  For example:
            <code>
            ParentClass foo = new ChildClass();
            ChildClass bar = (ChildClass) ((ICloneable)foo).Clone();
            </code>
            Assume that ChildClass is inherited from ParentClass.  Even though foo is declared with
            ParentClass, it is actually an instance of ChildClass.  Calling the ICloneable implementation
            of Clone() on foo actually calls ChildClass.Clone() as if it were a virtual function.
            </remarks>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.LineBase.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the
            serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains
            the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.LineBase.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize
            the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the
            serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the
            serialized data</param>
        </member>
        <member name="M:ZedGraph.LineBase.GetPen(ZedGraph.PaneBase,System.Single)">
            <summary>
            Create a <see cref="T:System.Drawing.Pen"/> object based on the properties of this
            <see cref="T:ZedGraph.LineBase"/>.
            </summary>
            <param name="pane">The owner <see cref="T:ZedGraph.GraphPane"/> of this
            <see cref="T:ZedGraph.LineBase"/>.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>A <see cref="T:System.Drawing.Pen"/> object with the properties of this <see cref="T:ZedGraph.LineBase"/>
            </returns>
        </member>
        <member name="M:ZedGraph.LineBase.GetPen(ZedGraph.PaneBase,System.Single,ZedGraph.PointPair)">
            <summary>
            Create a <see cref="T:System.Drawing.Pen"/> object based on the properties of this
            <see cref="T:ZedGraph.LineBase"/>.
            </summary>
            <param name="pane">The owner <see cref="T:ZedGraph.GraphPane"/> of this
            <see cref="T:ZedGraph.LineBase"/>.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="dataValue">The data value to be used for a value-based
            color gradient.  This is only applicable if <see cref="P:ZedGraph.Fill.Type">GradientFill.Type</see>
            is one of <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/>, <see cref="F:ZedGraph.FillType.GradientByZ"/>,
            or <see cref="F:ZedGraph.FillType.GradientByColorValue"/>.
            </param>
            <returns>A <see cref="T:System.Drawing.Pen"/> object with the properties of this <see cref="T:ZedGraph.LineBase"/>
            </returns>
        </member>
        <member name="P:ZedGraph.LineBase.Color">
            <summary>
            The color of the <see cref="T:ZedGraph.Line"/>.  Note that this color value can be
            overridden if the <see cref="P:ZedGraph.Fill.Type">GradientFill.Type</see> is one of the
            <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/>, <see cref="F:ZedGraph.FillType.GradientByZ"/>,
            and <see cref="F:ZedGraph.FillType.GradientByColorValue"/> types.
            </summary>
            <seealso cref="P:ZedGraph.LineBase.GradientFill"/>
        </member>
        <member name="P:ZedGraph.LineBase.Style">
            <summary>
            The style of the <see cref="T:ZedGraph.Line"/>, defined as a <see cref="T:System.Drawing.Drawing2D.DashStyle"/> enum.
            This allows the line to be solid, dashed, or dotted.
            </summary>
            <seealso cref="F:ZedGraph.LineBase.Default.Style"/>
            <seealso cref="P:ZedGraph.LineBase.DashOn"/>
            <seealso cref="P:ZedGraph.LineBase.DashOff"/>
        </member>
        <member name="P:ZedGraph.LineBase.DashOn">
            <summary>
            The "Dash On" mode for drawing the line.
            </summary>
            <remarks>
            This is the distance, in points (1/72 inch), of the dash segments that make up
            the dashed grid lines.  This setting is only valid if 
            <see cref="P:ZedGraph.LineBase.Style"/> is set to <see cref="F:System.Drawing.Drawing2D.DashStyle.Custom"/>.
            </remarks>
            <value>The dash on length is defined in points (1/72 inch)</value>
            <seealso cref="P:ZedGraph.LineBase.DashOff"/>
            <seealso cref="P:ZedGraph.LineBase.IsVisible"/>
            <seealso cref="F:ZedGraph.LineBase.Default.DashOn"/>.
        </member>
        <member name="P:ZedGraph.LineBase.DashOff">
            <summary>
            The "Dash Off" mode for drawing the line.
            </summary>
            <remarks>
            This is the distance, in points (1/72 inch), of the spaces between the dash
            segments that make up the dashed grid lines.  This setting is only valid if 
            <see cref="P:ZedGraph.LineBase.Style"/> is set to <see cref="F:System.Drawing.Drawing2D.DashStyle.Custom"/>.
            </remarks>
            <value>The dash off length is defined in points (1/72 inch)</value>
            <seealso cref="P:ZedGraph.LineBase.DashOn"/>
            <seealso cref="P:ZedGraph.LineBase.IsVisible"/>
            <seealso cref="F:ZedGraph.LineBase.Default.DashOff"/>.
        </member>
        <member name="P:ZedGraph.LineBase.Width">
            <summary>
            The pen width used to draw the <see cref="T:ZedGraph.Line"/>, in points (1/72 inch)
            </summary>
            <seealso cref="F:ZedGraph.LineBase.Default.Width"/>
        </member>
        <member name="P:ZedGraph.LineBase.IsVisible">
            <summary>
            Gets or sets a property that shows or hides the <see cref="T:ZedGraph.Line"/>.
            </summary>
            <value>true to show the line, false to hide it</value>
            <seealso cref="F:ZedGraph.LineBase.Default.IsVisible"/>
        </member>
        <member name="P:ZedGraph.LineBase.IsAntiAlias">
            <summary>
            Gets or sets a value that determines if the lines are drawn using
            Anti-Aliasing capabilities from the <see cref="T:System.Drawing.Graphics"/> class.
            </summary>
            <remarks>
            If this value is set to true, then the <see cref="P:System.Drawing.Graphics.SmoothingMode"/>
            property will be set to <see cref="F:System.Drawing.Drawing2D.SmoothingMode.HighQuality"/> only while
            this <see cref="T:ZedGraph.Line"/> is drawn.  A value of false will leave the value of
            <see cref="P:System.Drawing.Graphics.SmoothingMode"/> unchanged.
            </remarks>
        </member>
        <member name="P:ZedGraph.LineBase.GradientFill">
            <summary>
            Gets or sets a custom <see cref="T:ZedGraph.Fill"/> class.
            </summary>
            <remarks>This fill is used strictly for <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/>, <see cref="F:ZedGraph.FillType.GradientByZ"/>,
            and <see cref="F:ZedGraph.FillType.GradientByColorValue"/> calculations to determine
            the color of the line.  It overrides the <see cref="P:ZedGraph.LineBase.Color"/> property if
            one of the above <see cref="T:ZedGraph.FillType"/> values are selected.
            </remarks>
            <seealso cref="P:ZedGraph.LineBase.Color"/>
        </member>
        <member name="T:ZedGraph.LineBase.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.LineBase"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase.Default.IsVisible">
            <summary>
            The default mode for displaying line segments (<see cref="P:ZedGraph.LineBase.IsVisible"/>
            property).  True to show the line segments, false to hide them.
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase.Default.Width">
            <summary>
            The default width for line segments (<see cref="P:ZedGraph.LineBase.Width"/> property).
            Units are points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase.Default.IsAntiAlias">
            <summary>
            The default value for the <see cref="P:ZedGraph.LineBase.IsAntiAlias"/>
            property.
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase.Default.Style">
            <summary>
            The default drawing style for line segments (<see cref="P:ZedGraph.LineBase.Style"/> property).
            This is defined with the <see cref="T:System.Drawing.Drawing2D.DashStyle"/> enumeration.
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase.Default.DashOn">
            <summary>
            The default "dash on" size for drawing the line
            (<see cref="P:ZedGraph.LineBase.DashOn"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase.Default.DashOff">
            <summary>
            The default "dash off" size for drawing the the line
            (<see cref="P:ZedGraph.LineBase.DashOff"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.LineBase.Default.Color">
            <summary>
            The default color for the line.
            This is the default value for the <see cref="P:ZedGraph.LineBase.Color"/> property.
            </summary>
        </member>
        <member name="F:ZedGraph.OHLCBar.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.OHLCBar._isOpenCloseVisible">
            <summary>
            Private field that stores the visibility of the <see cref="T:ZedGraph.OHLCBar"/> open and
            close line segments ("wings").  Use the public
            property <see cref="P:ZedGraph.OHLCBar.IsOpenCloseVisible"/> to access this value.  If this value is
            false, the wings will not be shown.
            </summary>
        </member>
        <member name="F:ZedGraph.OHLCBar._size">
            <summary>
            Private field that stores the total width for the Opening/Closing line
            segments.  Use the public property <see cref="P:ZedGraph.OHLCBar.Size"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.OHLCBar._isAutoSize">
            <summary>
            Private field that determines if the <see cref="P:ZedGraph.OHLCBar.Size"/> property will be
            calculated automatically based on the minimum axis scale step size between
            bars.  Use the public property <see cref="P:ZedGraph.OHLCBar.IsAutoSize"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.OHLCBar._userScaleSize">
            <summary>
            The result of the autosize calculation, which is the size of the bars in
            user scale units.  This is converted to pixels at draw time.
            </summary>
        </member>
        <member name="M:ZedGraph.OHLCBar.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.OHLCBar"/> properties to
            default values as defined in the <see cref="T:ZedGraph.OHLCBar.Default"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.OHLCBar.#ctor(System.Drawing.Color)">
            <summary>
            Default constructor that sets the
            <see cref="T:System.Drawing.Color"/> as specified, and the remaining
            <see cref="T:ZedGraph.OHLCBar"/> properties to default
            values as defined in the <see cref="T:ZedGraph.OHLCBar.Default"/> class.
            </summary>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value indicating
            the color of the symbol
            </param>
        </member>
        <member name="M:ZedGraph.OHLCBar.#ctor(ZedGraph.OHLCBar)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.OHLCBar"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.OHLCBar.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.OHLCBar.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.OHLCBar.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.OHLCBar.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.OHLCBar.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.OHLCBar.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Boolean,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Drawing.Pen)">
            <summary>
            Draw the <see cref="T:ZedGraph.OHLCBar"/> to the specified <see cref="T:System.Drawing.Graphics"/>
            device at the specified location.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="isXBase">boolean value that indicates if the "base" axis for this
            <see cref="T:ZedGraph.OHLCBar"/> is the X axis.  True for an <see cref="T:ZedGraph.XAxis"/> base,
            false for a <see cref="T:ZedGraph.YAxis"/> or <see cref="T:ZedGraph.Y2Axis"/> base.</param>
            <param name="pixBase">The independent axis position of the center of the candlestick in
            pixel units</param>
            <param name="pixHigh">The dependent axis position of the top of the candlestick in
            pixel units</param>
            <param name="pixLow">The dependent axis position of the bottom of the candlestick in
            pixel units</param>
            <param name="pixOpen">The dependent axis position of the opening value of the candlestick in
            pixel units</param>
            <param name="pixClose">The dependent axis position of the closing value of the candlestick in
            pixel units</param>
            <param name="halfSize">
            The scaled width of the candlesticks, pixels</param>
            <param name="pen">A pen with attributes of <see cref="T:System.Drawing.Color"/> and
            <see cref="P:ZedGraph.LineBase.Width"/> for this <see cref="T:ZedGraph.OHLCBar"/></param>
        </member>
        <member name="M:ZedGraph.OHLCBar.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.OHLCBarItem,ZedGraph.Axis,ZedGraph.Axis,System.Single)">
            <summary>
            Draw all the <see cref="T:ZedGraph.OHLCBar"/>'s to the specified <see cref="T:System.Drawing.Graphics"/>
            device as a candlestick at each defined point.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.OHLCBarItem"/> object representing the
            <see cref="T:ZedGraph.OHLCBar"/>'s to be drawn.</param>
            <param name="baseAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the base (independent)
            axis for the <see cref="T:ZedGraph.OHLCBar"/></param>
            <param name="valueAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the value (dependent)
            axis for the <see cref="T:ZedGraph.OHLCBar"/></param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.OHLCBar.GetBarWidth(ZedGraph.GraphPane,ZedGraph.Axis,System.Single)">
            <summary>
            Returns the width of the candleStick, in pixels, based on the settings for
            <see cref="P:ZedGraph.OHLCBar.Size"/> and <see cref="P:ZedGraph.OHLCBar.IsAutoSize"/>.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> object.</param>
            <param name="baseAxis">The <see cref="T:ZedGraph.Axis"/> object that
            represents the bar base (independent axis).</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>The width of each bar, in pixel units</returns>
        </member>
        <member name="P:ZedGraph.OHLCBar.IsOpenCloseVisible">
            <summary>
            Gets or sets a property that shows or hides the <see cref="T:ZedGraph.OHLCBar"/> open/close "wings".
            </summary>
            <value>true to show the CandleStick wings, false to hide them</value>
            <seealso cref="F:ZedGraph.OHLCBar.Default.IsOpenCloseVisible"/>
        </member>
        <member name="P:ZedGraph.OHLCBar.Size">
            <summary>
            Gets or sets the total width to be used for drawing the opening/closing line
            segments ("wings") of the <see cref="T:ZedGraph.OHLCBar"/> items. Units are points.
            </summary>
            <remarks>The size of the candlesticks can be set by this value, which
            is then scaled according to the scaleFactor (see
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>).  Alternatively,
            if <see cref="P:ZedGraph.OHLCBar.IsAutoSize"/> is true, the bar width will
            be set according to the maximum available cluster width less
            the cluster gap (see <see cref="M:ZedGraph.BarSettings.GetClusterWidth"/>
            and <see cref="P:ZedGraph.BarSettings.MinClusterGap"/>).  That is, if
            <see cref="P:ZedGraph.OHLCBar.IsAutoSize"/> is true, then the value of
            <see cref="P:ZedGraph.OHLCBar.Size"/> will be ignored.  If you modify the value of Size,
            then <see cref="P:ZedGraph.OHLCBar.IsAutoSize"/> will be automatically set to false.
            </remarks>
            <value>Size in points (1/72 inch)</value>
            <seealso cref="F:ZedGraph.OHLCBar.Default.Size"/>
        </member>
        <member name="P:ZedGraph.OHLCBar.IsAutoSize">
            <summary>
            Gets or sets a value that determines if the <see cref="P:ZedGraph.OHLCBar.Size"/> property will be
            calculated automatically based on the minimum axis scale step size between
            bars.
            </summary>
        </member>
        <member name="T:ZedGraph.OHLCBar.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.OHLCBar"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.OHLCBar.Default.Size">
            <summary>
            The default width for the candlesticks (see <see cref="P:ZedGraph.OHLCBar.Size"/>),
            in units of points.
            </summary>
        </member>
        <member name="F:ZedGraph.OHLCBar.Default.IsOpenCloseVisible">
            <summary>
            The default display mode for symbols (<see cref="P:ZedGraph.OHLCBar.IsOpenCloseVisible"/> property).
            true to display symbols, false to hide them.
            </summary>
        </member>
        <member name="F:ZedGraph.OHLCBar.Default.IsAutoSize">
            <summary>
            The default value for the <see cref="P:ZedGraph.OHLCBar.IsAutoSize"/> property.
            </summary>
        </member>
        <member name="T:ZedGraph.ZedGraphException">
             <summary>
             An exception thrown by ZedGraph.  A child class of <see cref="T:System.ApplicationException"/>.
             </summary>
            
             <author> Jerry Vos modified by John Champion</author>
             <version> $Revision: 3.2 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="M:ZedGraph.ZedGraphException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Initializes a new instance of the <see cref="T:ZedGraph.ZedGraphException"/>
            class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/>
            instance that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/>
            instance that contains contextual information about the source or destination.</param>
        </member>
        <member name="M:ZedGraph.ZedGraphException.#ctor(System.String,System.Exception)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Exception"/> class with a specified
            error message and a reference to the inner exception that is the cause of this exception.
            </summary>
            <param name="message">The error message that explains the reason for the exception.</param>
            <param name="innerException">The exception that is the cause of the current exception.
            If the innerException parameter is not a null reference, the current exception is raised
            in a catch block that handles the inner exception.</param>
        </member>
        <member name="M:ZedGraph.ZedGraphException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Exception"/> class with a specified error message.
            </summary>
            <param name="message">The error message that explains the reason for the exception.</param>
        </member>
        <member name="M:ZedGraph.ZedGraphException.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:System.Exception"/> class.
            </summary>
        </member>
        <member name="T:ZedGraph.Axis">
            <summary>
            The Axis class is an abstract base class that encompasses all properties
            and methods required to define a graph Axis.
            </summary>
            <remarks>This class is inherited by the
            <see cref="T:ZedGraph.XAxis"/>, <see cref="T:ZedGraph.YAxis"/>, and <see cref="T:ZedGraph.Y2Axis"/> classes
            to define specific characteristics for those types.
            </remarks>
            
            <author> John Champion modified by Jerry Vos </author>
            <version> $Revision: 3.70 $ $Date: 2007/03/11 02:08:16 $ </version>
        </member>
        <member name="F:ZedGraph.Axis.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Axis._scale">
            <summary>
            private field that stores the <see cref="T:ZedGraph.Scale"/> class, which implements all the
            calculations and methods associated with the numeric scale for this
            <see cref="T:ZedGraph.Axis"/>.  See the public property <see cref="P:ZedGraph.Axis.Scale"/> to access this class.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis._minorTic">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.MinorTic"/> class, which handles all
            the minor tic information.  See the public property <see cref="P:ZedGraph.Axis.MinorTic"/> to access this class.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis._majorTic">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.MajorTic"/> class, which handles all
            the major tic information.  See the public property <see cref="P:ZedGraph.Axis.MajorTic"/> to access this class.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis._majorGrid">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.MajorGrid"/> class, which handles all
            the major grid information.  See the public property <see cref="P:ZedGraph.Axis.MajorGrid"/> to access this class.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis._minorGrid">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.MinorGrid"/> class, which handles all
            the minor grid information.  See the public property <see cref="P:ZedGraph.Axis.MinorGrid"/> to access this class.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis._cross">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> scale rendering properties.
            Use the public properties <see cref="P:ZedGraph.Axis.Cross"/> and <see cref="P:ZedGraph.Scale.BaseTic"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis._crossAuto">
            <summary> Private field for the <see cref="T:ZedGraph.Axis"/> automatic cross position mode.
            Use the public property <see cref="P:ZedGraph.Axis.CrossAuto"/> for access to this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis._isVisible">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> attributes.
            Use the public properties <see cref="P:ZedGraph.Axis.IsVisible"/>, <see cref="P:ZedGraph.Axis.IsAxisSegmentVisible"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis._isAxisSegmentVisible">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> attributes.
            Use the public properties <see cref="P:ZedGraph.Axis.IsVisible"/>, <see cref="P:ZedGraph.Axis.IsAxisSegmentVisible"/>
            for access to these values.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis._title">
            <summary> Private field for the <see cref="T:ZedGraph.Axis"/> title string.
            Use the public property <see cref="P:ZedGraph.Axis.Title"/> for access to this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Tag">
            <summary>
            A tag object for use by the user.  This can be used to store additional
            information associated with the <see cref="T:ZedGraph.Axis"/>.  ZedGraph does
            not use this value for any purpose.
            </summary>
            <remarks>
            Note that, if you are going to Serialize ZedGraph data, then any type
            that you store in <see cref="F:ZedGraph.Axis.Tag"/> must be a serializable type (or
            it will cause an exception).
            </remarks>
        </member>
        <member name="F:ZedGraph.Axis._axisGap">
            <summary> Private field for the <see cref="T:ZedGraph.Axis"/> drawing dimensions.
            Use the public property <see cref="P:ZedGraph.Axis.AxisGap"/>
            for access to these values. </summary>
        </member>
        <member name="F:ZedGraph.Axis._minSpace">
            <summary>
            Private field for the <see cref="T:ZedGraph.Axis"/> minimum allowable space allocation.
            Use the public property <see cref="P:ZedGraph.Axis.MinSpace"/> to access this value.
            </summary>
            <seealso cref="F:ZedGraph.Axis.Default.MinSpace"/>
        </member>
        <member name="F:ZedGraph.Axis._color">
            <summary> Private fields for the <see cref="T:ZedGraph.Axis"/> colors.
            Use the public property <see cref="P:ZedGraph.Axis.Color"/> for access to this values.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis._tmpSpace">
            <summary>
            Temporary values for axis space calculations (see <see cref="M:ZedGraph.Axis.CalcSpace(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Single@)"/>).
            </summary>
        </member>
        <member name="M:ZedGraph.Axis.#ctor">
            <summary>
            Default constructor for <see cref="T:ZedGraph.Axis"/> that sets all axis properties
            to default values as defined in the <see cref="T:ZedGraph.Axis.Default"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.Axis.#ctor(System.String)">
            <summary>
            Constructor for <see cref="T:ZedGraph.Axis"/> that sets all axis properties
            to default values as defined in the <see cref="T:ZedGraph.Axis.Default"/> class,
            except for the <see cref="P:ZedGraph.Axis.Title"/>.
            </summary>
            <param name="title">A string containing the axis title</param>
        </member>
        <member name="M:ZedGraph.Axis.#ctor(ZedGraph.Axis)">
            <summary>
            The Copy Constructor.
            </summary>
            <param name="rhs">The Axis object from which to copy</param>
        </member>
        <member name="M:ZedGraph.Axis.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of Clone.
            </summary>
            <remarks>
            Note that this method must be called with an explicit cast to ICloneable, and
            that it is inherently virtual.  For example:
            <code>
            ParentClass foo = new ChildClass();
            ChildClass bar = (ChildClass) ((ICloneable)foo).Clone();
            </code>
            Assume that ChildClass is inherited from ParentClass.  Even though foo is declared with
            ParentClass, it is actually an instance of ChildClass.  Calling the ICloneable implementation
            of Clone() on foo actually calls ChildClass.Clone() as if it were a virtual function.
            </remarks>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Axis.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Axis.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.Axis.ResetAutoScale(ZedGraph.GraphPane,System.Drawing.Graphics)">
            <summary>
            Restore the scale ranging to automatic mode, and recalculate the
            <see cref="T:ZedGraph.Axis"/> scale ranges
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <seealso cref="P:ZedGraph.Scale.MinAuto"/>
            <seealso cref="P:ZedGraph.Scale.MaxAuto"/>
            <seealso cref="P:ZedGraph.Scale.MajorStepAuto"/>
            <seealso cref="P:ZedGraph.Scale.MagAuto"/>
            <seealso cref="P:ZedGraph.Scale.FormatAuto"/>
        </member>
        <member name="M:ZedGraph.Axis.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.Axis"/> to the specified
            <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <remarks>
            This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.GraphPane"/> object.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="shiftPos">
            The number of pixels to shift to account for non-primary axis position (e.g.,
            the second, third, fourth, etc. <see cref="T:ZedGraph.YAxis"/> or <see cref="T:ZedGraph.Y2Axis"/>.
            </param>
        </member>
        <member name="M:ZedGraph.Axis.SetMinSpaceBuffer(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Boolean)">
            <summary>
            This method will set the <see cref="P:ZedGraph.Axis.MinSpace"/> property for this <see cref="T:ZedGraph.Axis"/>
            using the currently required space multiplied by a fraction (<paramref>bufferFraction</paramref>).
            </summary>
            <remarks>
            The currently required space is calculated using <see cref="M:ZedGraph.Axis.CalcSpace(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Single@)"/>, and is
            based on current data ranges, font sizes, etc.  The "space" is actually the amount of space
            required to fit the tic marks, scale labels, and axis title.
            </remarks>
            <param name="g">A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.</param>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.</param>
            <param name="bufferFraction">The amount of space to allocate for the axis, expressed
            as a fraction of the currently required space.  For example, a value of 1.2 would
            allow for 20% extra above the currently required space.</param>
            <param name="isGrowOnly">If true, then this method will only modify the <see cref="P:ZedGraph.Axis.MinSpace"/>
            property if the calculated result is more than the current value.</param>
        </member>
        <member name="M:ZedGraph.Axis.SetTransformMatrix(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single)">
            <summary>
            Setup the Transform Matrix to handle drawing of this <see cref="T:ZedGraph.Axis"/>
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.Axis.CalcCrossShift(ZedGraph.GraphPane)">
            <summary>
            Calculate the "shift" size, in pixels, in order to shift the axis from its default
            location to the value specified by <see cref="P:ZedGraph.Axis.Cross"/>.
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <returns>The shift amount measured in pixels</returns>
        </member>
        <member name="M:ZedGraph.Axis.EffectiveCrossValue(ZedGraph.GraphPane)">
            <summary>
            Returns the linearized actual cross position for this axis, reflecting the settings of
            <see cref="P:ZedGraph.Axis.Cross"/>, <see cref="P:ZedGraph.Axis.CrossAuto"/>, and <see cref="P:ZedGraph.Scale.IsReverse"/>.
            </summary>
            <remarks>
            If the value of <see cref="P:ZedGraph.Axis.Cross"/> lies outside the axis range, it is
            limited to the axis range.
            </remarks>
        </member>
        <member name="M:ZedGraph.Axis.IsCrossShifted(ZedGraph.GraphPane)">
            <summary>
            Returns true if the axis is shifted at all due to the setting of
            <see cref="P:ZedGraph.Axis.Cross"/>.  This function will always return false if
            <see cref="P:ZedGraph.Axis.CrossAuto"/> is true.
            </summary>
        </member>
        <member name="M:ZedGraph.Axis.CalcCrossFraction(ZedGraph.GraphPane)">
            <summary>
            Calculates the proportional fraction of the total cross axis width at which
            this axis is located.
            </summary>
            <param name="pane"></param>
            <returns></returns>
        </member>
        <member name="M:ZedGraph.Axis.CalcSpace(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Single@)">
            <summary>
            Calculate the space required (pixels) for this <see cref="T:ZedGraph.Axis"/> object.
            </summary>
            <remarks>
            This is the total space (vertical space for the X axis, horizontal space for
            the Y axes) required to contain the axis.  If <see cref="P:ZedGraph.Axis.Cross"/> is zero, then
            this space will be the space required between the <see cref="P:ZedGraph.Chart.Rect"/> and
            the <see cref="P:ZedGraph.PaneBase.Rect"/>.  This method sets the internal values of
            <see cref="F:ZedGraph.Axis._tmpSpace"/> for use by the <see cref="M:ZedGraph.GraphPane.CalcChartRect(System.Drawing.Graphics)"/>
            method.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="fixedSpace">The amount of space (pixels) at the edge of the ChartRect
            that is always required for this axis, even if the axis is shifted by the
            <see cref="P:ZedGraph.Axis.Cross"/> value.</param>
            <returns>Returns the space, in pixels, required for this axis (between the
            rect and ChartRect)</returns>
        </member>
        <member name="M:ZedGraph.Axis.IsPrimary(ZedGraph.GraphPane)">
            <summary>
            Determines if this <see cref="T:ZedGraph.Axis"/> object is a "primary" one.
            </summary>
            <remarks>
            The primary axes are the <see cref="T:ZedGraph.XAxis"/> (always), the first
            <see cref="T:ZedGraph.YAxis"/> in the <see cref="P:ZedGraph.GraphPane.YAxisList"/> 
            (<see cref="P:ZedGraph.CurveItem.YAxisIndex"/> = 0),  and the first
            <see cref="T:ZedGraph.Y2Axis"/> in the <see cref="P:ZedGraph.GraphPane.Y2AxisList"/> 
            (<see cref="P:ZedGraph.CurveItem.YAxisIndex"/> = 0).  Note that
            <see cref="P:ZedGraph.GraphPane.YAxis"/> and <see cref="P:ZedGraph.GraphPane.Y2Axis"/>
            always reference the primary axes.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <returns>true for a primary <see cref="T:ZedGraph.Axis"/> (for the <see cref="T:ZedGraph.XAxis"/>,
            this is always true), false otherwise</returns>
        </member>
        <member name="M:ZedGraph.Axis.DrawMinorTics(System.Drawing.Graphics,ZedGraph.GraphPane,System.Double,System.Single,System.Single,System.Single)">
            <summary>
            Draw the minor tic marks as required for this <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="baseVal">
            The scale value for the first major tic position.  This is the reference point
            for all other tic marks.
            </param>
            <param name="shift">The number of pixels to shift this axis, based on the
            value of <see cref="P:ZedGraph.Axis.Cross"/>.  A positive value is into the ChartRect relative to
            the default axis position.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="topPix">
            The pixel location of the far side of the ChartRect from this axis.
            This value is the ChartRect.Height for the XAxis, or the ChartRect.Width
            for the YAxis and Y2Axis.
            </param>
        </member>
        <member name="M:ZedGraph.Axis.DrawTitle(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Single)">
            <summary>
            Draw the title for this <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <remarks>On entry, it is assumed that the
            graphics transform has been configured so that the origin is at the left side
            of this axis, and the axis is aligned along the X coordinate direction.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="shiftPos">The number of pixels to shift this axis, based on the
            value of <see cref="P:ZedGraph.Axis.Cross"/>.  A positive value is into the ChartRect relative to
            the default axis position.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.Axis.MakeLabelEventWorks(ZedGraph.GraphPane,System.Int32,System.Double)">
            <summary>
            Make a value label for the axis at the specified ordinal position.
            </summary>
            <remarks>
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>,
            <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.  It also implements the ScaleFormatEvent such that
            custom labels can be created.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="index">
            The zero-based, ordinal index of the label to be generated.  For example, a value of 2 would
            cause the third value label on the axis to be generated.
            </param>
            <param name="dVal">
            The numeric value associated with the label.  This value is ignored for log
            (<see cref="P:ZedGraph.Scale.IsLog"/>)
            and text (<see cref="P:ZedGraph.Scale.IsText"/>) type axes.
            </param>
            <returns>The resulting value label as a <see cref="T:System.String"/></returns>
        </member>
        <member name="E:ZedGraph.Axis.ScaleFormatEvent">
            <summary>
            Subscribe to this event to handle custom formatting of the scale labels.
            </summary>
        </member>
        <member name="E:ZedGraph.Axis.ScaleTitleEvent">
            <summary>
            Allow customization of the title when the scale is very large
            Subscribe to this event to handle custom formatting of the scale axis label.
            </summary>
        </member>
        <member name="P:ZedGraph.Axis.Scale">
            <summary>
            Gets the <see cref="P:ZedGraph.Axis.Scale"/> instance associated with this <see cref="T:ZedGraph.Axis"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.Axis.Cross">
            <summary>
            Gets or sets the scale value at which this axis should cross the "other" axis.
            </summary>
            <remarks>This property allows the axis to be shifted away from its default location.
            For example, for a graph with an X range from -100 to +100, the Y Axis can be located
            at the X=0 value rather than the left edge of the ChartRect.  This value can be set
            automatically based on the state of <see cref="P:ZedGraph.Axis.CrossAuto"/>.  If
            this value is set manually, then <see cref="P:ZedGraph.Axis.CrossAuto"/> will
            also be set to false.  The "other" axis is the axis the handles the second dimension
            for the graph.  For the XAxis, the "other" axis is the YAxis.  For the YAxis or
            Y2Axis, the "other" axis is the XAxis.
            </remarks>
            <value> The value is defined in user scale units </value>
            <seealso cref="P:ZedGraph.Scale.Min"/>
            <seealso cref="P:ZedGraph.Scale.Max"/>
            <seealso cref="P:ZedGraph.Scale.MajorStep"/>
            <seealso cref="P:ZedGraph.Axis.CrossAuto"/>
        </member>
        <member name="P:ZedGraph.Axis.CrossAuto">
            <summary>
            Gets or sets a value that determines whether or not the <see cref="P:ZedGraph.Axis.Cross"/> value
            is set automatically.
            </summary>
            <value>Set to true to have ZedGraph put the axis in the default location, or false
            to specify the axis location manually with a <see cref="P:ZedGraph.Axis.Cross"/> value.</value>
            <seealso cref="P:ZedGraph.Scale.Min"/>
            <seealso cref="P:ZedGraph.Scale.Max"/>
            <seealso cref="P:ZedGraph.Scale.MajorStep"/>
            <seealso cref="P:ZedGraph.Axis.Cross"/>
        </member>
        <member name="P:ZedGraph.Axis.MinSpace">
            <summary>
            Gets or sets the minimum axis space allocation.
            </summary>
            <remarks>
            This term, expressed in
            points (1/72 inch) and scaled according to <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
            for the <see cref="T:ZedGraph.GraphPane"/>, determines the minimum amount of space
            an axis must have between the <see cref="P:ZedGraph.Chart.Rect">Chart.Rect</see> and the
            <see cref="P:ZedGraph.PaneBase.Rect">GraphPane.Rect</see>.  This minimum space
            applies whether <see cref="P:ZedGraph.Axis.IsVisible"/> is true or false.
            </remarks>
        </member>
        <member name="P:ZedGraph.Axis.Color">
            <summary>
            The color to use for drawing this <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <remarks>
            This affects only the axis segment (see <see cref="P:ZedGraph.Axis.IsAxisSegmentVisible"/>),
            since the <see cref="P:ZedGraph.Axis.Title"/>,
            <see cref="P:ZedGraph.Axis.Scale"/>, <see cref="P:ZedGraph.Axis.MajorTic"/>, <see cref="P:ZedGraph.Axis.MinorTic"/>,
            <see cref="P:ZedGraph.Axis.MajorGrid"/>, and <see cref="P:ZedGraph.Axis.MinorGrid"/>
            all have their own color specification.
            </remarks>
            <value> The color is defined using the
            <see cref="T:System.Drawing.Color"/> class</value>
            <seealso cref="F:ZedGraph.Axis.Default.Color"/>.
            <seealso cref="P:ZedGraph.Axis.IsVisible"/>
        </member>
        <member name="P:ZedGraph.Axis.MajorTic">
            <summary>
            Gets a reference to the <see cref="T:ZedGraph.MajorTic"/> class instance
            for this <see cref="T:ZedGraph.Axis"/>.  This class stores all the major tic settings.
            </summary>
        </member>
        <member name="P:ZedGraph.Axis.MinorTic">
            <summary>
            Gets a reference to the <see cref="T:ZedGraph.MinorTic"/> class instance
            for this <see cref="T:ZedGraph.Axis"/>.  This class stores all the minor tic settings.
            </summary>
        </member>
        <member name="P:ZedGraph.Axis.MajorGrid">
            <summary>
            Gets a reference to the <see cref="P:ZedGraph.Axis.MajorGrid"/> class that contains the properties
            of the major grid.
            </summary>
        </member>
        <member name="P:ZedGraph.Axis.MinorGrid">
            <summary>
            Gets a reference to the <see cref="P:ZedGraph.Axis.MinorGrid"/> class that contains the properties
            of the minor grid.
            </summary>
        </member>
        <member name="P:ZedGraph.Axis.IsVisible">
            <summary>
            This property determines whether or not the <see cref="T:ZedGraph.Axis"/> is shown.
            </summary>
            <remarks>
            Note that even if
            the axis is not visible, it can still be actively used to draw curves on a
            graph, it will just be invisible to the user
            </remarks>
            <value>true to show the axis, false to disable all drawing of this axis</value>
            <seealso cref="P:ZedGraph.Scale.IsVisible"/>.
            <seealso cref="F:ZedGraph.XAxis.Default.IsVisible"/>.
            <seealso cref="F:ZedGraph.YAxis.Default.IsVisible"/>.
            <seealso cref="F:ZedGraph.Y2Axis.Default.IsVisible"/>.
        </member>
        <member name="P:ZedGraph.Axis.IsAxisSegmentVisible">
            <summary>
            Gets or sets a property that determines whether or not the axis segment (the line that
            represents the axis itself) is drawn.
            </summary>
            <remarks>
            Under normal circumstances, this value won't affect the appearance of the display because
            the Axis segment is overlain by the Axis border (see <see cref="P:ZedGraph.Chart.Border"/>).
            However, when the border is not visible, or when <see cref="P:ZedGraph.Axis.CrossAuto"/> is set to
            false, this value will make a difference.
            </remarks>
        </member>
        <member name="P:ZedGraph.Axis.Type">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.AxisType"/> for this <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <remarks>
            The type can be either <see cref="F:ZedGraph.AxisType.Linear"/>,
            <see cref="F:ZedGraph.AxisType.Log"/>, <see cref="F:ZedGraph.AxisType.Date"/>,
            or <see cref="F:ZedGraph.AxisType.Text"/>.
            </remarks>
            <seealso cref="P:ZedGraph.Scale.IsLog"/>
            <seealso cref="P:ZedGraph.Scale.IsText"/>
            <seealso cref="P:ZedGraph.Scale.IsOrdinal"/>
            <seealso cref="P:ZedGraph.Scale.IsDate"/>
            <seealso cref="P:ZedGraph.Scale.IsReverse"/>
        </member>
        <member name="P:ZedGraph.Axis.Title">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Label"/> class that contains the title of this
            <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <remarks>The title normally shows the basis and dimensions of
            the scale range, such as "Time (Years)".  The title is only shown if the
            <see cref="P:ZedGraph.Label.IsVisible"/> property is set to true.  If the Title text is empty,
            then no title is shown, and no space is "reserved" for the title on the graph.
            </remarks>
            <value>the title is a string value</value>
            <seealso cref="P:ZedGraph.AxisLabel.IsOmitMag"/>
        </member>
        <member name="P:ZedGraph.Axis.AxisGap">
            <summary>
            The size of the gap between multiple axes (see <see cref="P:ZedGraph.GraphPane.YAxisList"/> and
            <see cref="P:ZedGraph.GraphPane.Y2AxisList"/>).
            </summary>
            <remarks>
            This size will be scaled
            according to the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> for the
            <see cref="T:ZedGraph.GraphPane"/>
            </remarks>
            <value>The axis gap is measured in points (1/72 inch)</value>
            <seealso cref="F:ZedGraph.Axis.Default.AxisGap"/>.
        </member>
        <member name="T:ZedGraph.Axis.ScaleFormatHandler">
            <summary>
            A delegate that allows full custom formatting of the Axis labels
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> for which the label is to be
            formatted</param>
            <param name="axis">The <see cref="P:ZedGraph.Axis.Scale"/> of interest.</param>
            <param name="val">The value to be formatted</param>
            <param name="index">The zero-based index of the label to be formatted</param>
            <returns>
            A string value representing the label, or null if the ZedGraph should go ahead
            and generate the label according to the current settings</returns>
            <seealso cref="E:ZedGraph.Axis.ScaleFormatEvent"/>
        </member>
        <member name="T:ZedGraph.Axis.ScaleTitleEventHandler">
            <summary>
            Allow customization of title based on user preferences.
            </summary>
            <param name="axis">The <see cref="T:ZedGraph.Axis"/> of interest.</param>
            <returns>
            A string value representing the label, or null if the ZedGraph should go ahead
            and generate the label according to the current settings.  To make the title
            blank, return "".</returns>
            <seealso cref="E:ZedGraph.Axis.ScaleFormatEvent"/>
        </member>
        <member name="T:ZedGraph.Axis.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.Axis"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.AxisGap">
            <summary>
            The default size for the gap between multiple axes
            (<see cref="P:ZedGraph.Axis.AxisGap"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.TitleGap">
            <summary>
            The default setting for the gap between the scale labels and the axis title.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.TitleFontFamily">
            <summary>
            The default font family for the <see cref="T:ZedGraph.Axis"/> <see cref="P:ZedGraph.Axis.Title"/> text
            font specification <see cref="T:ZedGraph.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.Family"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.TitleFontSize">
            <summary>
            The default font size for the <see cref="T:ZedGraph.Axis"/> <see cref="P:ZedGraph.Axis.Title"/> text
            font specification <see cref="T:ZedGraph.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.Size"/> property).  Units are
            in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.TitleFontColor">
            <summary>
            The default font color for the <see cref="T:ZedGraph.Axis"/> <see cref="P:ZedGraph.Axis.Title"/> text
            font specification <see cref="T:ZedGraph.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.FontColor"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.TitleFontBold">
            <summary>
            The default font bold mode for the <see cref="T:ZedGraph.Axis"/> <see cref="P:ZedGraph.Axis.Title"/> text
            font specification <see cref="T:ZedGraph.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.IsBold"/> property). true
            for a bold typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.TitleFontItalic">
            <summary>
            The default font italic mode for the <see cref="T:ZedGraph.Axis"/> <see cref="P:ZedGraph.Axis.Title"/> text
            font specification <see cref="T:ZedGraph.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.IsItalic"/> property). true
            for an italic typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.TitleFontUnderline">
            <summary>
            The default font underline mode for the <see cref="T:ZedGraph.Axis"/> <see cref="P:ZedGraph.Axis.Title"/> text
            font specification <see cref="T:ZedGraph.FontSpec"/>
            (<see cref="P:ZedGraph.FontSpec.IsUnderline"/> property). true
            for an underlined typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.TitleFillColor">
            <summary>
            The default color for filling in the <see cref="P:ZedGraph.Axis.Title"/> text background
            (see <see cref="P:ZedGraph.Fill.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.TitleFillBrush">
            <summary>
            The default custom brush for filling in the <see cref="P:ZedGraph.Axis.Title"/> text background
            (see <see cref="P:ZedGraph.Fill.Brush"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.TitleFillType">
            <summary>
            The default fill mode for filling in the <see cref="P:ZedGraph.Axis.Title"/> text background
            (see <see cref="P:ZedGraph.Fill.Type"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.BorderColor">
            <summary>
            The default color for the <see cref="T:ZedGraph.Axis"/> itself
            (<see cref="P:ZedGraph.Axis.Color"/> property).  This color only affects the
            the axis border.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.IsAxisSegmentVisible">
            <summary>
            The default value for <see cref="P:ZedGraph.Axis.IsAxisSegmentVisible"/>, which determines
            whether or not the scale segment itself is visible
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.Type">
            <summary>
            The default setting for the <see cref="T:ZedGraph.Axis"/> scale axis type
            (<see cref="P:ZedGraph.Axis.Type"/> property).  This value is set as per
            the <see cref="T:ZedGraph.AxisType"/> enumeration
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.Color">
            <summary>
            The default color for the axis segment.
            </summary>
        </member>
        <member name="F:ZedGraph.Axis.Default.MinSpace">
            <summary>
            The default setting for the axis space allocation.  This term, expressed in
            points (1/72 inch) and scaled according to <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> for the
            <see cref="T:ZedGraph.GraphPane"/>, determines the minimum amount of space an axis must
            have between the <see cref="P:ZedGraph.Chart.Rect"/> and the
            <see cref="P:ZedGraph.PaneBase.Rect"/>.  This minimum space
            applies whether <see cref="P:ZedGraph.Axis.IsVisible"/> is true or false.
            </summary>
        </member>
        <member name="T:ZedGraph.ArrowObj">
            <summary>
            A class that represents a graphic arrow or line object on the graph.  A list of
            ArrowObj objects is maintained by the <see cref="T:ZedGraph.GraphObjList"/> collection class.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.4 $ $Date: 2007/01/25 07:56:08 $ </version>
        </member>
        <member name="T:ZedGraph.LineObj">
            <summary>
            A class that represents a line segment object on the graph.  A list of
            GraphObj objects is maintained by the <see cref="T:ZedGraph.GraphObjList"/> collection class.
            </summary>
            <remarks>
            This should not be confused with the <see cref="T:ZedGraph.LineItem"/> class, which represents
            a set of points plotted together as a "curve".  The <see cref="T:ZedGraph.LineObj"/> class is
            a single line segment, drawn as a "decoration" on the chart.</remarks>
            
            <author> John Champion </author>
            <version> $Revision: 3.4 $ $Date: 2007/01/25 07:56:09 $ </version>
        </member>
        <member name="T:ZedGraph.GraphObj">
            <summary>
            An abstract base class that represents a text object on the graph.  A list of
            <see cref="T:ZedGraph.GraphObj"/> objects is maintained by the
            <see cref="T:ZedGraph.GraphObjList"/> collection class.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="F:ZedGraph.GraphObj.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
            <remarks>
            schema changed to 2 when isClippedToChartRect was added.
            </remarks>
        </member>
        <member name="F:ZedGraph.GraphObj._location">
            <summary>
            Protected field that stores the location of this <see cref="T:ZedGraph.GraphObj"/>.
            Use the public property <see cref="P:ZedGraph.GraphObj.Location"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphObj._isVisible">
            <summary>
            Protected field that determines whether or not this <see cref="T:ZedGraph.GraphObj"/>
            is visible in the graph.  Use the public property <see cref="P:ZedGraph.GraphObj.IsVisible"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphObj._isClippedToChartRect">
            <summary>
            Protected field that determines whether or not the rendering of this <see cref="T:ZedGraph.GraphObj"/>
            will be clipped to the ChartRect.  Use the public property <see cref="P:ZedGraph.GraphObj.IsClippedToChartRect"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphObj.Tag">
            <summary>
            A tag object for use by the user.  This can be used to store additional
            information associated with the <see cref="T:ZedGraph.GraphObj"/>.  ZedGraph does
            not use this value for any purpose.
            </summary>
            <remarks>
            Note that, if you are going to Serialize ZedGraph data, then any type
            that you store in <see cref="F:ZedGraph.GraphObj.Tag"/> must be a serializable type (or
            it will cause an exception).
            </remarks>
        </member>
        <member name="F:ZedGraph.GraphObj._zOrder">
            <summary>
            Internal field that determines the z-order "depth" of this
            item relative to other graphic objects.  Use the public property
            <see cref="P:ZedGraph.GraphObj.ZOrder"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphObj._link">
            <summary>
            Internal field that stores the hyperlink information for this object.
            </summary>
        </member>
        <member name="M:ZedGraph.GraphObj.#ctor">
            <overloads>
            Constructors for the <see cref="T:ZedGraph.GraphObj"/> class.
            </overloads>
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.GraphObj"/> properties to default
            values as defined in the <see cref="T:ZedGraph.GraphObj.Default"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.GraphObj.#ctor(System.Double,System.Double)">
            <summary>
            Constructor that sets all <see cref="T:ZedGraph.GraphObj"/> properties to default
            values as defined in the <see cref="T:ZedGraph.GraphObj.Default"/> class.
            </summary>
            <param name="x">The x position of the text.  The units
            of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.  The text will be
            aligned to this position based on the <see cref="T:ZedGraph.AlignH"/>
            property.</param>
            <param name="y">The y position of the text.  The units
            of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.  The text will be
            aligned to this position based on the
            <see cref="T:ZedGraph.AlignV"/> property.</param>
        </member>
        <member name="M:ZedGraph.GraphObj.#ctor(System.Double,System.Double,System.Double,System.Double)">
            <summary>
            Constructor that creates a <see cref="T:ZedGraph.GraphObj"/> with the specified
            coordinates and all other properties to defaults as specified
            in the <see cref="T:ZedGraph.GraphObj.Default"/> class..
            </summary>
            <remarks>
            The four coordinates define the starting point and ending point for
            <see cref="T:ZedGraph.ArrowObj"/>'s, or the topleft and bottomright points for
            <see cref="T:ZedGraph.ImageObj"/>'s.  For <see cref="T:ZedGraph.GraphObj"/>'s that only require
            one point, the <see paramref="x2"/> and <see paramref="y2"/> values
            will be ignored.  The units of the coordinates are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            </remarks>
            <param name="x">The x position of the item.</param>
            <param name="y">The y position of the item.</param>
            <param name="x2">The x2 position of the item.</param>
            <param name="y2">The x2 position of the item.</param>
        </member>
        <member name="M:ZedGraph.GraphObj.#ctor(System.Double,System.Double,ZedGraph.CoordType)">
            <summary>
            Constructor that creates a <see cref="T:ZedGraph.GraphObj"/> with the specified
            position and <see cref="T:ZedGraph.CoordType"/>.  Other properties are set to default
            values as defined in the <see cref="T:ZedGraph.GraphObj.Default"/> class.
            </summary>
            <remarks>
            The two coordinates define the location point for the object.
            The units of the coordinates are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            </remarks>
            <param name="x">The x position of the item.  The item will be
            aligned to this position based on the <see cref="T:ZedGraph.AlignH"/>
            property.</param>
            <param name="y">The y position of the item.  The item will be
            aligned to this position based on the
            <see cref="T:ZedGraph.AlignV"/> property.</param>
            <param name="coordType">The <see cref="T:ZedGraph.CoordType"/> enum value that
            indicates what type of coordinate system the x and y parameters are
            referenced to.</param>
        </member>
        <member name="M:ZedGraph.GraphObj.#ctor(System.Double,System.Double,ZedGraph.CoordType,ZedGraph.AlignH,ZedGraph.AlignV)">
            <summary>
            Constructor that creates a <see cref="T:ZedGraph.GraphObj"/> with the specified
            position, <see cref="T:ZedGraph.CoordType"/>, <see cref="T:ZedGraph.AlignH"/>, and <see cref="T:ZedGraph.AlignV"/>.
            Other properties are set to default values as defined in the <see cref="T:ZedGraph.GraphObj.Default"/> class.
            </summary>
            <remarks>
            The two coordinates define the location point for the object.
            The units of the coordinates are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            </remarks>
            <param name="x">The x position of the item.  The item will be
            aligned to this position based on the <see cref="T:ZedGraph.AlignH"/>
            property.</param>
            <param name="y">The y position of the text.  The units
            of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.  The text will be
            aligned to this position based on the
            <see cref="T:ZedGraph.AlignV"/> property.</param>
            <param name="coordType">The <see cref="T:ZedGraph.CoordType"/> enum value that
            indicates what type of coordinate system the x and y parameters are
            referenced to.</param>
            <param name="alignH">The <see cref="T:ZedGraph.AlignH"/> enum that specifies
            the horizontal alignment of the object with respect to the (x,y) location</param>
            <param name="alignV">The <see cref="T:ZedGraph.AlignV"/> enum that specifies
            the vertical alignment of the object with respect to the (x,y) location</param>
        </member>
        <member name="M:ZedGraph.GraphObj.#ctor(System.Double,System.Double,System.Double,System.Double,ZedGraph.CoordType,ZedGraph.AlignH,ZedGraph.AlignV)">
            <summary>
            Constructor that creates a <see cref="T:ZedGraph.GraphObj"/> with the specified
            position, <see cref="T:ZedGraph.CoordType"/>, <see cref="T:ZedGraph.AlignH"/>, and <see cref="T:ZedGraph.AlignV"/>.
            Other properties are set to default values as defined in the <see cref="T:ZedGraph.GraphObj.Default"/> class.
            </summary>
            <remarks>
            The four coordinates define the starting point and ending point for
            <see cref="T:ZedGraph.ArrowObj"/>'s, or the topleft and bottomright points for
            <see cref="T:ZedGraph.ImageObj"/>'s.  For <see cref="T:ZedGraph.GraphObj"/>'s that only require
            one point, the <see paramref="x2"/> and <see paramref="y2"/> values
            will be ignored.  The units of the coordinates are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            </remarks>
            <param name="x">The x position of the item.</param>
            <param name="y">The y position of the item.</param>
            <param name="x2">The x2 position of the item.</param>
            <param name="y2">The x2 position of the item.</param>
            <param name="coordType">The <see cref="T:ZedGraph.CoordType"/> enum value that
            indicates what type of coordinate system the x and y parameters are
            referenced to.</param>
            <param name="alignH">The <see cref="T:ZedGraph.AlignH"/> enum that specifies
            the horizontal alignment of the object with respect to the (x,y) location</param>
            <param name="alignV">The <see cref="T:ZedGraph.AlignV"/> enum that specifies
            the vertical alignment of the object with respect to the (x,y) location</param>
        </member>
        <member name="M:ZedGraph.GraphObj.#ctor(ZedGraph.GraphObj)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.GraphObj"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.GraphObj.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of Clone.
            </summary>
            <remarks>
            Note that this method must be called with an explicit cast to ICloneable, and
            that it is inherently virtual.  For example:
            <code>
            ParentClass foo = new ChildClass();
            ChildClass bar = (ChildClass) ((ICloneable)foo).Clone();
            </code>
            Assume that ChildClass is inherited from ParentClass.  Even though foo is declared with
            ParentClass, it is actually an instance of ChildClass.  Calling the ICloneable implementation
            of Clone() on foo actually calls ChildClass.Clone() as if it were a virtual function.
            </remarks>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.GraphObj.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.GraphObj.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.GraphObj.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single)">
            <summary>
            Render this <see cref="T:ZedGraph.GraphObj"/> object to the specified <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <remarks>
            This method is normally only called by the Draw method
            of the parent <see cref="T:ZedGraph.GraphObjList"/> collection object.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.PaneBase"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.GraphObj.PointInBox(System.Drawing.PointF,ZedGraph.PaneBase,System.Drawing.Graphics,System.Single)">
            <summary>
            Determine if the specified screen point lies inside the bounding box of this
            <see cref="T:ZedGraph.GraphObj"/>.
            </summary>
            <param name="pt">The screen point, in pixels</param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.PaneBase"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>true if the point lies in the bounding box, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.GraphObj.GetCoords(ZedGraph.PaneBase,System.Drawing.Graphics,System.Single,System.String@,System.String@)">
            <summary>
            Determines the shape type and Coords values for this GraphObj
            </summary>
        </member>
        <member name="P:ZedGraph.GraphObj.Location">
            <summary>
            The <see cref="T:ZedGraph.Location"/> struct that describes the location
            for this <see cref="T:ZedGraph.GraphObj"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.GraphObj.ZOrder">
            <summary>
            Gets or sets a value that determines the z-order "depth" of this
            item relative to other graphic objects.
            </summary>
            <remarks>Note that this controls the z-order with respect to
            other elements such as <see cref="T:ZedGraph.CurveItem"/>'s, <see cref="T:ZedGraph.Axis"/>
            objects, etc.  The order of <see cref="T:ZedGraph.GraphObj"/> objects having
            the same <see cref="T:ZedGraph.ZOrder"/> value is controlled by their order in
            the <see cref="T:ZedGraph.GraphObjList"/>.  The first <see cref="T:ZedGraph.GraphObj"/>
            in the list is drawn in front of other <see cref="T:ZedGraph.GraphObj"/>
            objects having the same <see cref="T:ZedGraph.ZOrder"/> value.</remarks>
        </member>
        <member name="P:ZedGraph.GraphObj.IsVisible">
            <summary>
            Gets or sets a value that determines if this <see cref="T:ZedGraph.GraphObj"/> will be
            visible in the graph.  true displays the item, false hides it.
            </summary>
        </member>
        <member name="P:ZedGraph.GraphObj.IsClippedToChartRect">
            <summary>
            Gets or sets a value that determines whether or not the rendering of this <see cref="T:ZedGraph.GraphObj"/>
            will be clipped to the <see cref="P:ZedGraph.Chart.Rect"/>.
            </summary>
            <value>true to clip the <see cref="T:ZedGraph.GraphObj"/> to the <see cref="P:ZedGraph.Chart.Rect"/> bounds,
            false to leave it unclipped.</value>
        </member>
        <member name="P:ZedGraph.GraphObj.Link">
            <summary>
            Gets or sets the hyperlink information for this <see cref="T:ZedGraph.GraphObj"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.GraphObj.IsInFrontOfData">
            <summary>
            true if the <see cref="P:ZedGraph.GraphObj.ZOrder"/> of this object is set to put it in front
            of the <see cref="T:ZedGraph.CurveItem"/> data points.
            </summary>
        </member>
        <member name="T:ZedGraph.GraphObj.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.GraphObj"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphObj.Default.AlignV">
            <summary>
            Default value for the vertical <see cref="T:ZedGraph.GraphObj"/>
            text alignment (<see cref="P:ZedGraph.GraphObj.Location"/> property).
            This is specified
            using the <see cref="F:ZedGraph.GraphObj.Default.AlignV"/> enum type.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphObj.Default.AlignH">
            <summary>
            Default value for the horizontal <see cref="T:ZedGraph.GraphObj"/>
            text alignment (<see cref="P:ZedGraph.GraphObj.Location"/> property).
            This is specified
            using the <see cref="F:ZedGraph.GraphObj.Default.AlignH"/> enum type.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphObj.Default.CoordFrame">
            <summary>
            The default coordinate system to be used for defining the
            <see cref="T:ZedGraph.GraphObj"/> location coordinates
            (<see cref="P:ZedGraph.GraphObj.Location"/> property).
            </summary>
            <value> The coordinate system is defined with the <see cref="T:ZedGraph.CoordType"/>
            enum</value>
        </member>
        <member name="F:ZedGraph.GraphObj.Default.IsClippedToChartRect">
            <summary>
            The default value for <see cref="P:ZedGraph.GraphObj.IsClippedToChartRect"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.LineObj.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.LineObj._line">
            <summary>
            protected field that maintains the attributes of the line using an
            instance of the <see cref="T:ZedGraph.LineBase"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.LineObj.#ctor(System.Drawing.Color,System.Double,System.Double,System.Double,System.Double)">
            <overloads>Constructors for the <see cref="T:ZedGraph.LineObj"/> object</overloads>
            <summary>
            A constructor that allows the position, color, and size of the
            <see cref="T:ZedGraph.LineObj"/> to be pre-specified.
            </summary>
            <param name="color">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the arrow</param>
            <param name="x1">The x position of the starting point that defines the
            line.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="y1">The y position of the starting point that defines the
            line.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="x2">The x position of the ending point that defines the
            line.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="y2">The y position of the ending point that defines the
            line.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
        </member>
        <member name="M:ZedGraph.LineObj.#ctor(System.Double,System.Double,System.Double,System.Double)">
            <summary>
            A constructor that allows only the position of the
            line to be pre-specified.  All other properties are set to
            default values
            </summary>
            <param name="x1">The x position of the starting point that defines the
            <see cref="T:ZedGraph.LineObj"/>.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="y1">The y position of the starting point that defines the
            <see cref="T:ZedGraph.LineObj"/>.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="x2">The x position of the ending point that defines the
            <see cref="T:ZedGraph.LineObj"/>.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="y2">The y position of the ending point that defines the
            <see cref="T:ZedGraph.LineObj"/>.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
        </member>
        <member name="M:ZedGraph.LineObj.#ctor">
            <summary>
            Default constructor -- places the <see cref="T:ZedGraph.LineObj"/> at location
            (0,0) to (1,1).  All other values are defaulted.
            </summary>
        </member>
        <member name="M:ZedGraph.LineObj.#ctor(ZedGraph.LineObj)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.LineObj"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.LineObj.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.LineObj.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.LineObj.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.LineObj.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.LineObj.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.LineObj.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single)">
            <summary>
            Render this object to the specified <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <remarks>
            This method is normally only called by the Draw method
            of the parent <see cref="T:ZedGraph.GraphObjList"/> collection object.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.LineObj.PointInBox(System.Drawing.PointF,ZedGraph.PaneBase,System.Drawing.Graphics,System.Single)">
            <summary>
            Determine if the specified screen point lies inside the bounding box of this
            <see cref="T:ZedGraph.LineObj"/>.
            </summary>
            <remarks>The bounding box is calculated assuming a distance
            of <see cref="F:ZedGraph.GraphPane.Default.NearestTol"/> pixels around the arrow segment.
            </remarks>
            <param name="pt">The screen point, in pixels</param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>true if the point lies in the bounding box, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.LineObj.GetCoords(ZedGraph.PaneBase,System.Drawing.Graphics,System.Single,System.String@,System.String@)">
            <summary>
            Determines the shape type and Coords values for this GraphObj
            </summary>
        </member>
        <member name="P:ZedGraph.LineObj.Line">
            <summary>
            A <see cref="T:ZedGraph.LineBase"/> class that contains the attributes for drawing this
            <see cref="T:ZedGraph.LineObj"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.ArrowObj.schema3">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.ArrowObj._size">
            <summary>
            Private field that stores the arrowhead size, measured in points.
            Use the public property <see cref="P:ZedGraph.ArrowObj.Size"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.ArrowObj._isArrowHead">
            <summary>
            Private boolean field that stores the arrowhead state.
            Use the public property <see cref="P:ZedGraph.ArrowObj.IsArrowHead"/> to access this value.
            </summary>
            <value> true if an arrowhead is to be drawn, false otherwise </value>
        </member>
        <member name="M:ZedGraph.ArrowObj.#ctor(System.Drawing.Color,System.Single,System.Double,System.Double,System.Double,System.Double)">
            <overloads>Constructors for the <see cref="T:ZedGraph.ArrowObj"/> object</overloads>
            <summary>
            A constructor that allows the position, color, and size of the
            <see cref="T:ZedGraph.ArrowObj"/> to be pre-specified.
            </summary>
            <param name="color">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the arrow</param>
            <param name="size">The size of the arrowhead, measured in points.</param>
            <param name="x1">The x position of the starting point that defines the
            arrow.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="y1">The y position of the starting point that defines the
            arrow.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="x2">The x position of the ending point that defines the
            arrow.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="y2">The y position of the ending point that defines the
            arrow.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
        </member>
        <member name="M:ZedGraph.ArrowObj.#ctor(System.Double,System.Double,System.Double,System.Double)">
            <summary>
            A constructor that allows only the position of the
            arrow to be pre-specified.  All other properties are set to
            default values
            </summary>
            <param name="x1">The x position of the starting point that defines the
            <see cref="T:ZedGraph.ArrowObj"/>.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="y1">The y position of the starting point that defines the
            <see cref="T:ZedGraph.ArrowObj"/>.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="x2">The x position of the ending point that defines the
            <see cref="T:ZedGraph.ArrowObj"/>.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="y2">The y position of the ending point that defines the
            <see cref="T:ZedGraph.ArrowObj"/>.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
        </member>
        <member name="M:ZedGraph.ArrowObj.#ctor">
            <summary>
            Default constructor -- places the <see cref="T:ZedGraph.ArrowObj"/> at location
            (0,0) to (1,1).  All other values are defaulted.
            </summary>
        </member>
        <member name="M:ZedGraph.ArrowObj.#ctor(ZedGraph.ArrowObj)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.ArrowObj"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.ArrowObj.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.ArrowObj.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.ArrowObj.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.ArrowObj.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.ArrowObj.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.ArrowObj.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single)">
            <summary>
            Render this object to the specified <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <remarks>
            This method is normally only called by the Draw method
            of the parent <see cref="T:ZedGraph.GraphObjList"/> collection object.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="P:ZedGraph.ArrowObj.Size">
            <summary>
            The size of the arrowhead.
            </summary>
            <remarks>The display of the arrowhead can be
            enabled or disabled with the <see cref="P:ZedGraph.ArrowObj.IsArrowHead"/> property.
            </remarks>
            <value> The size is defined in points (1/72 inch) </value>
            <seealso cref="F:ZedGraph.ArrowObj.Default.Size"/>
        </member>
        <member name="P:ZedGraph.ArrowObj.IsArrowHead">
            <summary>
            Determines whether or not to draw an arrowhead
            </summary>
            <value> true to show the arrowhead, false to show the line segment
            only</value>
            <seealso cref="F:ZedGraph.ArrowObj.Default.IsArrowHead"/>
        </member>
        <member name="T:ZedGraph.ArrowObj.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.ArrowObj"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.ArrowObj.Default.Size">
            <summary>
            The default size for the <see cref="T:ZedGraph.ArrowObj"/> item arrowhead
            (<see cref="P:ZedGraph.ArrowObj.Size"/> property).  Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.ArrowObj.Default.IsArrowHead">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.ArrowObj"/> item arrowhead
            (<see cref="P:ZedGraph.ArrowObj.IsArrowHead"/> property).  true to show the
            arrowhead, false to hide it.
            </summary>
        </member>
        <member name="T:ZedGraph.ZedGraphControl">
            <summary>
            The ZedGraphControl class provides a UserControl interface to the
            <see cref="N:ZedGraph"/> class library.  This allows ZedGraph to be installed
            as a control in the Visual Studio toolbox.  You can use the control by simply
            dragging it onto a form in the Visual Studio form editor.  All graph
            attributes are accessible via the <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/>
            property.
            </summary>
            <author> John Champion revised by Jerry Vos </author>
            <version> $Revision: 3.81 $ $Date: 2007/02/19 08:05:24 $ </version>
        </member>
        <member name="F:ZedGraph.ZedGraphControl.components">
            <summary> 
            Required designer variable.
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.InitializeComponent">
            <summary> 
            Required method for Designer support - do not modify 
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._masterPane">
            <summary>
            This private field contains the instance for the MasterPane object of this control.
            You can access the MasterPane object through the public property
            <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/>. This is nulled when this Control is
            disposed.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isAntiAlias">
            <summary>
            private field that determines if anti-aliased drawing will be forced on.  Use the
            public property <see cref="P:ZedGraph.ZedGraphControl.IsAntiAlias"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isShowPointValues">
            <summary>
            private field that determines whether or not tooltips will be displayed
            when the mouse hovers over data values.  Use the public property
            <see cref="P:ZedGraph.ZedGraphControl.IsShowPointValues"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isShowCursorValues">
            <summary>
            private field that determines whether or not tooltips will be displayed
            showing the scale values while the mouse is located within the ChartRect.
            Use the public property <see cref="P:ZedGraph.ZedGraphControl.IsShowCursorValues"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._pointValueFormat">
            <summary>
            private field that determines the format for displaying tooltip values.
            This format is passed to <see cref="M:ZedGraph.PointPairBase.ToString(System.String)"/>.
            Use the public property <see cref="P:ZedGraph.ZedGraphControl.PointValueFormat"/> to access this
            value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isShowContextMenu">
            <summary>
            private field that determines whether or not the context menu will be available.  Use the
            public property <see cref="P:ZedGraph.ZedGraphControl.IsShowContextMenu"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isShowCopyMessage">
            <summary>
            private field that determines whether or not a message box will be shown in response to
            a context menu "Copy" command.  Use the
            public property <see cref="P:ZedGraph.ZedGraphControl.IsShowCopyMessage"/> to access this value.
            </summary>
            <remarks>
            Note that, if this value is set to false, the user will receive no indicative feedback
            in response to a Copy action.
            </remarks>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isPrintScaleAll">
            <summary>
            private field that determines whether the settings of
            <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/> and <see cref="P:ZedGraph.PaneBase.IsPenWidthScaled"/>
            will be overridden to true during printing operations.
            </summary>
            <remarks>
            Printing involves pixel maps that are typically of a dramatically different dimension
            than on-screen pixel maps.  Therefore, it becomes more important to scale the fonts and
            lines to give a printed image that looks like what is shown on-screen.  The default
            setting for <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/> is true, but the default
            setting for <see cref="P:ZedGraph.PaneBase.IsPenWidthScaled"/> is false.
            </remarks>
            <value>
            A value of true will cause both <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/> and
            <see cref="P:ZedGraph.PaneBase.IsPenWidthScaled"/> to be temporarily set to true during
            printing operations.
            </value>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isPrintKeepAspectRatio">
            <summary>
            private field that determines whether or not the visible aspect ratio of the
            <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/> will be preserved
            when printing this <see cref="T:ZedGraph.ZedGraphControl"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isPrintFillPage">
            <summary>
            private field that determines whether or not the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/>
            <see cref="P:ZedGraph.PaneBase.Rect"/> dimensions will be expanded to fill the
            available space when printing this <see cref="T:ZedGraph.ZedGraphControl"/>.
            </summary>
            <remarks>
            If <see cref="P:ZedGraph.ZedGraphControl.IsPrintKeepAspectRatio"/> is also true, then the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/>
            <see cref="P:ZedGraph.PaneBase.Rect"/> dimensions will be expanded to fit as large
            a space as possible while still honoring the visible aspect ratio.
            </remarks>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._pointDateFormat">
            <summary>
            private field that determines the format for displaying tooltip date values.
            This format is passed to <see cref="M:ZedGraph.XDate.ToString(System.String)"/>.
            Use the public property <see cref="P:ZedGraph.ZedGraphControl.PointDateFormat"/> to access this
            value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isEnableVZoom">
            <summary>
            private value that determines whether or not zooming is enabled for the control in the
            vertical direction.  Use the public property <see cref="P:ZedGraph.ZedGraphControl.IsEnableVZoom"/> to access this
            value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isEnableHZoom">
            <summary>
            private value that determines whether or not zooming is enabled for the control in the
            horizontal direction.  Use the public property <see cref="P:ZedGraph.ZedGraphControl.IsEnableHZoom"/> to access this
            value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isEnableVEdit">
            <summary>
            private value that determines whether or not point editing is enabled in the
            vertical direction.  Use the public property <see cref="P:ZedGraph.ZedGraphControl.IsEnableVEdit"/> to access this
            value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isEnableHEdit">
            <summary>
            private value that determines whether or not point editing is enabled in the
            horizontal direction.  Use the public property <see cref="P:ZedGraph.ZedGraphControl.IsEnableHEdit"/> to access this
            value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isEnableHPan">
            <summary>
            private value that determines whether or not panning is allowed for the control in the
            horizontal direction.  Use the
            public property <see cref="P:ZedGraph.ZedGraphControl.IsEnableHPan"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isEnableVPan">
            <summary>
            private value that determines whether or not panning is allowed for the control in the
            vertical direction.  Use the
            public property <see cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isEnableSelection">
            <summary>
            Internal variable that indicates if the control can manage selections. 
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._pdSave">
            <summary>
            private field that stores a <see cref="P:ZedGraph.ZedGraphControl.PrintDocument"/> instance, which maintains
            a persistent selection of printer options.
            </summary>
            <remarks>
            This is needed so that a "Print" action utilizes the settings from a prior
            "Page Setup" action.</remarks>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._selection">
            <summary>
            This private field contains a list of selected CurveItems.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._linkButtons">
            <summary>
            Gets or sets a value that determines which Mouse button will be used to click on
            linkable objects
            </summary>
            <seealso cref="P:ZedGraph.ZedGraphControl.LinkModifierKeys"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._linkModifierKeys">
            <summary>
            Gets or sets a value that determines which modifier keys will be used to click
            on linkable objects
            </summary>
            <seealso cref="P:ZedGraph.ZedGraphControl.LinkButtons"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._editButtons">
            <summary>
            Gets or sets a value that determines which Mouse button will be used to edit point
            data values
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHEdit"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVEdit"/> are true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.EditModifierKeys"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._editModifierKeys">
            <summary>
            Gets or sets a value that determines which modifier keys will be used to edit point
            data values
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHEdit"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVEdit"/> are true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.EditButtons"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._selectButtons">
            <summary>
            Gets or sets a value that determines which mouse button will be used to select
            <see cref="T:ZedGraph.CurveItem"/>'s.
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableSelection"/> is true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.SelectModifierKeys"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._selectModifierKeys">
            <summary>
            Gets or sets a value that determines which modifier keys will be used to select
            <see cref="T:ZedGraph.CurveItem"/>'s.
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableSelection"/> is true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.SelectButtons"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._zoomButtons">
            <summary>
            Gets or sets a value that determines which Mouse button will be used to perform
            zoom operations
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHZoom"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVZoom"/> are true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomButtons2"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys2"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._zoomModifierKeys">
            <summary>
            Gets or sets a value that determines which modifier keys will be used to perform
            zoom operations
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHZoom"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVZoom"/> are true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomButtons"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomButtons2"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys2"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._zoomButtons2">
            <summary>
            Gets or sets a value that determines which Mouse button will be used as a
            secondary option to perform zoom operations
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHZoom"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVZoom"/> are true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys2"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomButtons"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._zoomModifierKeys2">
            <summary>
            Gets or sets a value that determines which modifier keys will be used as a
            secondary option to perform zoom operations
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHZoom"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVZoom"/> are true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomButtons"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomButtons2"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys2"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._panButtons">
            <summary>
            Gets or sets a value that determines which Mouse button will be used to perform
            panning operations
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHPan"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/> are true.  A Pan operation (dragging the graph with
            the mouse) should not be confused with a scroll operation (using a scroll bar to
            move the graph).
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanModifierKeys"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanButtons2"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanModifierKeys2"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._panModifierKeys">
            <summary>
            Gets or sets a value that determines which modifier keys will be used to perform
            panning operations
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHPan"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/> are true.  A Pan operation (dragging the graph with
            the mouse) should not be confused with a scroll operation (using a scroll bar to
            move the graph).
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanButtons"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanButtons2"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanModifierKeys2"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._panButtons2">
            <summary>
            Gets or sets a value that determines which Mouse button will be used as a
            secondary option to perform panning operations
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHPan"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/> are true.  A Pan operation (dragging the graph with
            the mouse) should not be confused with a scroll operation (using a scroll bar to
            move the graph).
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanModifierKeys2"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanButtons"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanModifierKeys"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._panModifierKeys2">
            <summary>
            Gets or sets a value that determines which modifier keys will be used as a
            secondary option to perform panning operations
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHPan"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/> are true.  A Pan operation (dragging the graph with
            the mouse) should not be confused with a scroll operation (using a scroll bar to
            move the graph).
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanButtons2"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanButtons"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.PanModifierKeys"/>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isZooming">
            <summary>
            Internal variable that indicates the control is currently being zoomed. 
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isPanning">
            <summary>
            Internal variable that indicates the control is currently being panned.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isEditing">
            <summary>
            Internal variable that indicates a point value is currently being edited.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._isSelecting">
            <summary>
            Internal variable that indicates the control is currently using selection. 
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._dragPane">
            <summary>
            Internal variable that stores the <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> reference for the Pane that is
            currently being zoomed or panned.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._dragStartPt">
            <summary>
            Internal variable that stores a rectangle which is either the zoom rectangle, or the incremental
            pan amount since the last mousemove event.
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl._zoomState">
            <summary>
            private field that stores the state of the scale ranges prior to starting a panning action.
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.#ctor">
            <summary>
            Default Constructor
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.Dispose(System.Boolean)">
            <summary>
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if the components should be
            disposed, false otherwise</param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.GetImage">
            <summary>
            Gets the graph pane's current image.
            <seealso cref="T:System.Drawing.Bitmap"/>
            </summary>
            <exception cref="T:ZedGraph.ZedGraphException">
            When the control has been disposed before this call.
            </exception>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            Called by the system to update the control on-screen
            </summary>
            <param name="e">
            A PaintEventArgs object containing the Graphics specifications
            for this Paint event.
            </param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZedGraphControl_ReSize(System.Object,System.EventArgs)">
            <summary>
            Called when the control has been resized.
            </summary>
            <param name="sender">
            A reference to the control that has been resized.
            </param>
            <param name="e">
            An EventArgs object.
            </param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.AxisChange">
            <summary>This performs an axis change command on the graphPane.
            </summary>
            <remarks>
            This is the same as
            <c>ZedGraphControl.GraphPane.AxisChange( ZedGraphControl.CreateGraphics() )</c>, however,
            this method also calls <see cref="M:ZedGraph.ZedGraphControl.SetScrollRangeFromData"/> if <see cref="P:ZedGraph.ZedGraphControl.IsAutoScrollRange"/>
            is true.
            </remarks>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZedGraphControl_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handle a MouseDown event in the <see cref="T:ZedGraph.ZedGraphControl"/>
            </summary>
            <param name="sender">A reference to the <see cref="T:ZedGraph.ZedGraphControl"/></param>
            <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance</param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.SetCursor">
            <summary>
            Set the cursor according to the current mouse location.
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.SetCursor(System.Drawing.Point)">
            <summary>
            Set the cursor according to the current mouse location.
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZedGraphControl_KeyUp(System.Object,System.Windows.Forms.KeyEventArgs)">
            <summary>
            Handle a KeyUp event
            </summary>
            <param name="sender">The <see cref="T:ZedGraph.ZedGraphControl"/> in which the KeyUp occurred.</param>
            <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs"/> instance.</param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZedGraphControl_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
            <summary>
            Handle the Key Events so ZedGraph can Escape out of a panning or zooming operation.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZedGraphControl_MouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handle a MouseUp event in the <see cref="T:ZedGraph.ZedGraphControl"/>
            </summary>
            <param name="sender">A reference to the <see cref="T:ZedGraph.ZedGraphControl"/></param>
            <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance</param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.MakeValueLabel(ZedGraph.Axis,System.Double,System.Int32,System.Boolean)">
            <summary>
            Make a string label that corresponds to a user scale value.
            </summary>
            <param name="axis">The axis from which to obtain the scale value.  This determines
            if it's a date value, linear, log, etc.</param>
            <param name="val">The value to be made into a label</param>
            <param name="iPt">The ordinal position of the value</param>
            <param name="isOverrideOrdinal">true to override the ordinal settings of the axis,
            and prefer the actual value instead.</param>
            <returns>The string label.</returns>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZedGraphControl_MouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            protected method for handling MouseMove events to display tooltips over
            individual datapoints.
            </summary>
            <param name="sender">
            A reference to the control that has the MouseMove event.
            </param>
            <param name="e">
            A MouseEventArgs object.
            </param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZedGraphControl_MouseWheel(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Handle a MouseWheel event in the <see cref="T:ZedGraph.ZedGraphControl"/>
            </summary>
            <param name="sender">A reference to the <see cref="T:ZedGraph.ZedGraphControl"/></param>
            <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance</param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZoomPane(ZedGraph.GraphPane,System.Double,System.Drawing.PointF,System.Boolean,System.Boolean)">
            <summary>
            Zoom a specified pane in or out according to the specified zoom fraction.
            </summary>
            <remarks>
            The zoom will occur on the <see cref="T:ZedGraph.XAxis"/>, <see cref="T:ZedGraph.YAxis"/>, and
            <see cref="T:ZedGraph.Y2Axis"/> only if the corresponding flag, <see cref="P:ZedGraph.ZedGraphControl.IsEnableHZoom"/> or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVZoom"/>, is true.  Note that if there are multiple Y or Y2 axes, all of
            them will be zoomed.
            </remarks>
            <param name="pane">The <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> instance to be zoomed.</param>
            <param name="zoomFraction">The fraction by which to zoom, less than 1 to zoom in, greater than
            1 to zoom out.  For example, 0.9 will zoom in such that the scale is 90% of what it was
            originally.</param>
            <param name="centerPt">The screen position about which the zoom will be centered.  This
            value is only used if <see paramref="isZoomOnCenter"/> is true.
            </param>
            <param name="isZoomOnCenter">true to cause the zoom to be centered on the point
            <see paramref="centerPt"/>, false to center on the <see cref="P:ZedGraph.Chart.Rect"/>.
            </param>
            <param name="isRefresh">true to force a refresh of the control, false to leave it unrefreshed</param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZoomPane(ZedGraph.GraphPane,System.Double,System.Drawing.PointF,System.Boolean)">
            <summary>
            Zoom a specified pane in or out according to the specified zoom fraction.
            </summary>
            <remarks>
            The zoom will occur on the <see cref="T:ZedGraph.XAxis"/>, <see cref="T:ZedGraph.YAxis"/>, and
            <see cref="T:ZedGraph.Y2Axis"/> only if the corresponding flag, <see cref="P:ZedGraph.ZedGraphControl.IsEnableHZoom"/> or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVZoom"/>, is true.  Note that if there are multiple Y or Y2 axes, all of
            them will be zoomed.
            </remarks>
            <param name="pane">The <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> instance to be zoomed.</param>
            <param name="zoomFraction">The fraction by which to zoom, less than 1 to zoom in, greater than
            1 to zoom out.  For example, 0.9 will zoom in such that the scale is 90% of what it was
            originally.</param>
            <param name="centerPt">The screen position about which the zoom will be centered.  This
            value is only used if <see paramref="isZoomOnCenter"/> is true.
            </param>
            <param name="isZoomOnCenter">true to cause the zoom to be centered on the point
            <see paramref="centerPt"/>, false to center on the <see cref="P:ZedGraph.Chart.Rect"/>.
            </param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZoomScale(ZedGraph.Axis,System.Double,System.Double,System.Boolean)">
            <summary>
            Zoom the specified axis by the specified amount, with the center of the zoom at the
            (optionally) specified point.
            </summary>
            <remarks>
            This method is used for MouseWheel zoom operations</remarks>
            <param name="axis">The <see cref="T:ZedGraph.Axis"/> to be zoomed.</param>
            <param name="zoomFraction">The zoom fraction, less than 1.0 to zoom in, greater than 1.0 to
            zoom out.  That is, a value of 0.9 will zoom in such that the scale length is 90% of what
            it previously was.</param>
            <param name="centerVal">The location for the center of the zoom.  This is only used if
            <see paramref="IsZoomOnMouseCenter"/> is true.</param>
            <param name="isZoomOnCenter">true if the zoom is to be centered at the
            <see paramref="centerVal"/> screen position, false for the zoom to be centered within
            the <see cref="P:ZedGraph.Chart.Rect"/>.
            </param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.PanScale(ZedGraph.Axis,System.Double,System.Double)">
            <summary>
            Handle a panning operation for the specified <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="axis">The <see cref="T:ZedGraph.Axis"/> to be panned</param>
            <param name="startVal">The value where the pan started.  The scale range
            will be shifted by the difference between <see paramref="startVal"/> and
            <see paramref="endVal"/>.
            </param>
            <param name="endVal">The value where the pan ended.  The scale range
            will be shifted by the difference between <see paramref="startVal"/> and
            <see paramref="endVal"/>.
            </param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.HandleSelectionFinish(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Perform selection on curves within the drag pane, or under the mouse click.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ScrollBarMouseCaptureChanged(System.Object,System.EventArgs)">
            <summary>
            Use the MouseCaptureChanged as an indicator for the start and end of a scrolling operation
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.SetScrollRangeFromData">
            <summary>
            Sets the value of the scroll range properties (see <see cref="P:ZedGraph.ZedGraphControl.ScrollMinX"/>,
            <see cref="P:ZedGraph.ZedGraphControl.ScrollMaxX"/>, <see cref="P:ZedGraph.ZedGraphControl.YScrollRangeList"/>, and 
            <see cref="P:ZedGraph.ZedGraphControl.Y2ScrollRangeList"/> based on the actual range of the data for
            each corresponding <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <remarks>
            This method is called automatically by <see cref="M:ZedGraph.ZedGraphControl.AxisChange"/> if
            <see cref="P:ZedGraph.ZedGraphControl.IsAutoScrollRange"/>
            is true.  Note that this will not be called if you call AxisChange directly from the
            <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/>.  For example, zedGraphControl1.AxisChange() works properly, but
            zedGraphControl1.GraphPane.AxisChange() does not.</remarks>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.GetObjectState">
            <summary>
            Find the object currently under the mouse cursor, and return its state.
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.contextMenuStrip1_Opening(System.Object,System.ComponentModel.CancelEventArgs)">
            <summary>
            protected method to handle the popup context menu in the <see cref="T:ZedGraph.ZedGraphControl"/>.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.MenuClick_Copy(System.Object,System.EventArgs)">
            <summary>
            Handler for the "Copy" context menu item.  Copies the current image to a bitmap on the
            clipboard.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.Copy(System.Boolean)">
            <summary>
            Handler for the "Copy" context menu item.  Copies the current image to a bitmap on the
            clipboard.
            </summary>
            <param name="isShowMessage">boolean value that determines whether or not a prompt will be
            displayed.  true to show a message of "Image Copied to ClipBoard".</param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ClipboardCopyThread">
            <summary>
            A threaded version of the copy method to avoid crash with MTA
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.MenuClick_SaveAs(System.Object,System.EventArgs)">
            <summary>
            Handler for the "Save Image As" context menu item.  Copies the current image to the selected
            file.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.SaveAs">
            <summary>
            Handler for the "Save Image As" context menu item.  Copies the current image to the selected
            file in either the Emf (vector), or a variety of Bitmap formats.
            </summary>
            <remarks>
            Note that <see cref="M:ZedGraph.ZedGraphControl.SaveAsBitmap"/> and <see cref="M:ZedGraph.ZedGraphControl.SaveAsEmf"/> methods are provided
            which allow for Bitmap-only or Emf-only handling of the "Save As" context menu item.
            </remarks>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.SaveAsBitmap">
            <summary>
            Handler for the "Save Image As" context menu item.  Copies the current image to the selected
            Bitmap file.
            </summary>
            <remarks>
            Note that this handler saves as a bitmap only.  The default handler is
            <see cref="M:ZedGraph.ZedGraphControl.SaveAs"/>, which allows for Bitmap or EMF formats
            </remarks>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.SaveAsEmf">
            <summary>
            Handler for the "Save Image As" context menu item.  Copies the current image to the selected
            Emf format file.
            </summary>
            <remarks>
            Note that this handler saves as an Emf format only.  The default handler is
            <see cref="M:ZedGraph.ZedGraphControl.SaveAs"/>, which allows for Bitmap or EMF formats.
            </remarks>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.MenuClick_ShowValues(System.Object,System.EventArgs)">
            <summary>
            Handler for the "Show Values" context menu item.  Toggles the <see cref="P:ZedGraph.ZedGraphControl.IsShowPointValues"/>
            property, which activates the point value tooltips.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.MenuClick_RestoreScale(System.Object,System.EventArgs)">
            <summary>
            Handler for the "Set Scale to Default" context menu item.  Sets the scale ranging to
            full auto mode for all axes.
            </summary>
            <remarks>
            This method differs from the <see cref="M:ZedGraph.ZedGraphControl.ZoomOutAll(ZedGraph.GraphPane)"/> method in that it sets the scales
            to full auto mode.  The <see cref="M:ZedGraph.ZedGraphControl.ZoomOutAll(ZedGraph.GraphPane)"/> method sets the scales to their initial
            setting prior to any user actions (which may or may not be full auto mode).
            </remarks>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.RestoreScale(ZedGraph.GraphPane)">
            <summary>
            Handler for the "Set Scale to Default" context menu item.  Sets the scale ranging to
            full auto mode for all axes.
            </summary>
            <remarks>
            This method differs from the <see cref="M:ZedGraph.ZedGraphControl.ZoomOutAll(ZedGraph.GraphPane)"/> method in that it sets the scales
            to full auto mode.  The <see cref="M:ZedGraph.ZedGraphControl.ZoomOutAll(ZedGraph.GraphPane)"/> method sets the scales to their initial
            setting prior to any user actions (which may or may not be full auto mode).
            </remarks>
            <param name="primaryPane">The <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> object which is to have the
            scale restored</param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.MenuClick_ZoomOut(System.Object,System.EventArgs)">
            <summary>
            Handler for the "UnZoom/UnPan" context menu item.  Restores the scale ranges to the values
            before the last zoom or pan operation.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZoomOut(ZedGraph.GraphPane)">
            <summary>
            Handler for the "UnZoom/UnPan" context menu item.  Restores the scale ranges to the values
            before the last zoom, pan, or scroll operation.
            </summary>
            <remarks>
            Triggers a <see cref="E:ZedGraph.ZedGraphControl.ZoomEvent"/> for any type of undo (including pan, scroll, zoom, and
            wheelzoom).  This method will affect all the
            <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> objects in the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> if
            <see cref="P:ZedGraph.ZedGraphControl.IsSynchronizeXAxes"/> or <see cref="P:ZedGraph.ZedGraphControl.IsSynchronizeYAxes"/> is true.
            </remarks>
            <param name="primaryPane">The primary <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> object which is to be
            zoomed out</param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.MenuClick_ZoomOutAll(System.Object,System.EventArgs)">
            <summary>
            Handler for the "Undo All Zoom/Pan" context menu item.  Restores the scale ranges to the values
            before all zoom and pan operations
            </summary>
            <remarks>
            This method differs from the <see cref="M:ZedGraph.ZedGraphControl.RestoreScale(ZedGraph.GraphPane)"/> method in that it sets the scales
            to their initial setting prior to any user actions.  The <see cref="M:ZedGraph.ZedGraphControl.RestoreScale(ZedGraph.GraphPane)"/> method
            sets the scales to full auto mode (regardless of what the initial setting may have been).
            </remarks>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZoomOutAll(ZedGraph.GraphPane)">
            <summary>
            Handler for the "Undo All Zoom/Pan" context menu item.  Restores the scale ranges to the values
            before all zoom and pan operations
            </summary>
            <remarks>
            This method differs from the <see cref="M:ZedGraph.ZedGraphControl.RestoreScale(ZedGraph.GraphPane)"/> method in that it sets the scales
            to their initial setting prior to any user actions.  The <see cref="M:ZedGraph.ZedGraphControl.RestoreScale(ZedGraph.GraphPane)"/> method
            sets the scales to full auto mode (regardless of what the initial setting may have been).
            </remarks>
            <param name="primaryPane">The <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> object which is to be zoomed out</param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.MenuClick_PageSetup(System.Object,System.EventArgs)">
            <summary>
            Handler for the "Page Setup..." context menu item.   Displays a
            <see cref="T:System.Windows.Forms.PageSetupDialog"/>.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.MenuClick_Print(System.Object,System.EventArgs)">
            <summary>
            Handler for the "Print..." context menu item.   Displays a
            <see cref="T:System.Windows.Forms.PrintDialog"/>.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.Graph_PrintPage(System.Object,System.Drawing.Printing.PrintPageEventArgs)">
            <summary>
            Rendering method used by the print context menu items
            </summary>
            <param name="sender">The applicable <see cref="P:ZedGraph.ZedGraphControl.PrintDocument"/>.</param>
            <param name="e">A <see cref="T:System.Drawing.Printing.PrintPageEventArgs"/> instance providing
            page bounds, margins, and a Graphics instance for this printed output.
            </param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.DoPageSetup">
            <summary>
            Display a <see cref="T:System.Windows.Forms.PageSetupDialog"/> to the user, allowing them to modify
            the print settings for this <see cref="T:ZedGraph.ZedGraphControl"/>.
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.DoPrint">
            <summary>
            Display a <see cref="T:System.Windows.Forms.PrintDialog"/> to the user, allowing them to select a
            printer and print the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> contained in this
            <see cref="T:ZedGraph.ZedGraphControl"/>.
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.DoPrintPreview">
            <summary>
            Display a <see cref="T:System.Windows.Forms.PrintPreviewDialog"/>, allowing the user to preview and
            subsequently print the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> contained in this
            <see cref="T:ZedGraph.ZedGraphControl"/>.
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZoomStateSave(ZedGraph.GraphPane,ZedGraph.ZoomState.StateType)">
            <summary>
            Save the current states of the GraphPanes to a separate collection.  Save a single
            (<see paramref="primaryPane"/>) GraphPane if the panes are not synchronized
            (see <see cref="P:ZedGraph.ZedGraphControl.IsSynchronizeXAxes"/> and <see cref="P:ZedGraph.ZedGraphControl.IsSynchronizeYAxes"/>),
            or save a list of states for all GraphPanes if the panes are synchronized.
            </summary>
            <param name="primaryPane">The primary GraphPane on which zoom/pan/scroll operations
            are taking place</param>
            <param name="type">The <see cref="T:ZedGraph.ZoomState.StateType"/> that describes the
            current operation</param>
            <returns>The <see cref="T:ZedGraph.ZoomState"/> that corresponds to the
            <see paramref="primaryPane"/>.
            </returns>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZoomStateRestore(ZedGraph.GraphPane)">
            <summary>
            Restore the states of the GraphPanes to a previously saved condition (via
            <see cref="M:ZedGraph.ZedGraphControl.ZoomStateSave(ZedGraph.GraphPane,ZedGraph.ZoomState.StateType)"/>.  This is essentially an "undo" for live
            pan and scroll actions.  Restores a single
            (<see paramref="primaryPane"/>) GraphPane if the panes are not synchronized
            (see <see cref="P:ZedGraph.ZedGraphControl.IsSynchronizeXAxes"/> and <see cref="P:ZedGraph.ZedGraphControl.IsSynchronizeYAxes"/>),
            or save a list of states for all GraphPanes if the panes are synchronized.
            </summary>
            <param name="primaryPane">The primary GraphPane on which zoom/pan/scroll operations
            are taking place</param>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZoomStatePush(ZedGraph.GraphPane)">
            <summary>
            Place the previously saved states of the GraphPanes on the individual GraphPane
            <see cref="P:ZedGraph.GraphPane.ZoomStack"/> collections.  This provides for an
            option to undo the state change at a later time.  Save a single
            (<see paramref="primaryPane"/>) GraphPane if the panes are not synchronized
            (see <see cref="P:ZedGraph.ZedGraphControl.IsSynchronizeXAxes"/> and <see cref="P:ZedGraph.ZedGraphControl.IsSynchronizeYAxes"/>),
            or save a list of states for all GraphPanes if the panes are synchronized.
            </summary>
            <param name="primaryPane">The primary GraphPane on which zoom/pan/scroll operations
            are taking place</param>
            <returns>The <see cref="T:ZedGraph.ZoomState"/> that corresponds to the
            <see paramref="primaryPane"/>.
            </returns>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZoomStateClear">
            <summary>
            Clear the collection of saved states.
            </summary>
        </member>
        <member name="M:ZedGraph.ZedGraphControl.ZoomStatePurge">
            <summary>
            Clear all states from the undo stack for each GraphPane.
            </summary>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ZoomButtons">
            <summary>
            Gets or sets a value that determines which mouse button will be used as a primary option
            to trigger a zoom event.
            </summary>
            <remarks>
            This value is combined with <see cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys"/> to determine the actual zoom combination.
            A secondary zoom button/key combination option is available via <see cref="P:ZedGraph.ZedGraphControl.ZoomButtons2"/> and
            <see cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys2"/>.  To not use this button/key combination, set the value
            of <see cref="P:ZedGraph.ZedGraphControl.ZoomButtons"/> to <see cref="F:System.Windows.Forms.MouseButtons.None"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ZoomButtons2">
            <summary>
            Gets or sets a value that determines which mouse button will be used as the secondary option
            to trigger a zoom event.
            </summary>
            <remarks>
            This value is combined with <see cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys2"/> to determine the actual zoom combination.
            The primary zoom button/key combination option is available via <see cref="P:ZedGraph.ZedGraphControl.ZoomButtons"/> and
            <see cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys"/>.  To not use this button/key combination, set the value
            of <see cref="P:ZedGraph.ZedGraphControl.ZoomButtons2"/> to <see cref="F:System.Windows.Forms.MouseButtons.None"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ZoomModifierKeys">
            <summary>
            Gets or sets a value that determines which modifier keys will be used as a primary option
            to trigger a zoom event.
            </summary>
            <remarks>
            This value is combined with <see cref="P:ZedGraph.ZedGraphControl.ZoomButtons"/> to determine the actual zoom combination.
            A secondary zoom button/key combination option is available via <see cref="P:ZedGraph.ZedGraphControl.ZoomButtons2"/> and
            <see cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys2"/>.  To not use this button/key combination, set the value
            of <see cref="P:ZedGraph.ZedGraphControl.ZoomButtons"/> to <see cref="F:System.Windows.Forms.MouseButtons.None"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ZoomModifierKeys2">
            <summary>
            Gets or sets a value that determines which modifier keys will be used as a secondary option
            to trigger a zoom event.
            </summary>
            <remarks>
            This value is combined with <see cref="P:ZedGraph.ZedGraphControl.ZoomButtons2"/> to determine the actual zoom combination.
            A primary zoom button/key combination option is available via <see cref="P:ZedGraph.ZedGraphControl.ZoomButtons"/> and
            <see cref="P:ZedGraph.ZedGraphControl.ZoomModifierKeys"/>.  To not use this button/key combination, set the value
            of <see cref="P:ZedGraph.ZedGraphControl.ZoomButtons2"/> to <see cref="F:System.Windows.Forms.MouseButtons.None"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.PanButtons">
            <summary>
            Gets or sets a value that determines which mouse button will be used as a primary option
            to trigger a pan event.
            </summary>
            <remarks>
            This value is combined with <see cref="P:ZedGraph.ZedGraphControl.PanModifierKeys"/> to determine the actual pan combination.
            A secondary pan button/key combination option is available via <see cref="P:ZedGraph.ZedGraphControl.PanButtons2"/> and
            <see cref="P:ZedGraph.ZedGraphControl.PanModifierKeys2"/>.  To not use this button/key combination, set the value
            of <see cref="P:ZedGraph.ZedGraphControl.PanButtons"/> to <see cref="F:System.Windows.Forms.MouseButtons.None"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.PanButtons2">
            <summary>
            Gets or sets a value that determines which mouse button will be used as the secondary option
            to trigger a pan event.
            </summary>
            <remarks>
            This value is combined with <see cref="P:ZedGraph.ZedGraphControl.PanModifierKeys2"/> to determine the actual pan combination.
            The primary pan button/key combination option is available via <see cref="P:ZedGraph.ZedGraphControl.PanButtons"/> and
            <see cref="P:ZedGraph.ZedGraphControl.PanModifierKeys"/>.  To not use this button/key combination, set the value
            of <see cref="P:ZedGraph.ZedGraphControl.PanButtons2"/> to <see cref="F:System.Windows.Forms.MouseButtons.None"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.PanModifierKeys">
            <summary>
            Gets or sets a value that determines which modifier keys will be used as a primary option
            to trigger a pan event.
            </summary>
            <remarks>
            This value is combined with <see cref="P:ZedGraph.ZedGraphControl.PanButtons"/> to determine the actual pan combination.
            A secondary pan button/key combination option is available via <see cref="P:ZedGraph.ZedGraphControl.PanButtons2"/> and
            <see cref="P:ZedGraph.ZedGraphControl.PanModifierKeys2"/>.  To not use this button/key combination, set the value
            of <see cref="P:ZedGraph.ZedGraphControl.PanButtons"/> to <see cref="F:System.Windows.Forms.MouseButtons.None"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.PanModifierKeys2">
            <summary>
            Gets or sets a value that determines which modifier keys will be used as a secondary option
            to trigger a pan event.
            </summary>
            <remarks>
            This value is combined with <see cref="P:ZedGraph.ZedGraphControl.PanButtons2"/> to determine the actual pan combination.
            A primary pan button/key combination option is available via <see cref="P:ZedGraph.ZedGraphControl.PanButtons"/> and
            <see cref="P:ZedGraph.ZedGraphControl.PanModifierKeys"/>.  To not use this button/key combination, set the value
            of <see cref="P:ZedGraph.ZedGraphControl.PanButtons2"/> to <see cref="F:System.Windows.Forms.MouseButtons.None"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.EditButtons">
            <summary>
            Gets or sets a value that determines which Mouse button will be used to edit point
            data values
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHEdit"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVEdit"/> are true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.EditModifierKeys"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.EditModifierKeys">
            <summary>
            Gets or sets a value that determines which modifier keys will be used to edit point
            data values
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableHEdit"/> and/or
            <see cref="P:ZedGraph.ZedGraphControl.IsEnableVEdit"/> are true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.EditButtons"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.SelectButtons">
            <summary>
            Gets or sets a value that determines which Mouse button will be used to 
            select <see cref="T:ZedGraph.CurveItem"/>'s.
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableSelection"/> is true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.SelectModifierKeys"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.SelectModifierKeys">
            <summary>
            Gets or sets a value that determines which Modifier keys will be used to 
            select <see cref="T:ZedGraph.CurveItem"/>'s.
            </summary>
            <remarks>
            This setting only applies if <see cref="P:ZedGraph.ZedGraphControl.IsEnableSelection"/> is true.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.SelectButtons"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.SelectAppendModifierKeys">
            <summary>
            Gets or sets a value that determines which Modifier keys will be used to 
            append a <see cref="T:ZedGraph.CurveItem"/> to the selection list.
            </summary>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.LinkButtons">
            <summary>
            Gets or sets a value that determines which Mouse button will be used to click
            on linkable objects
            </summary>
            <seealso cref="P:ZedGraph.ZedGraphControl.LinkModifierKeys"/>
            <seealso cref="E:ZedGraph.ZedGraphControl.LinkEvent"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.LinkModifierKeys">
            <summary>
            Gets or sets a value that determines which modifier keys will be used to click
            on linkable objects
            </summary>
            <seealso cref="P:ZedGraph.ZedGraphControl.LinkButtons"/>
            <seealso cref="E:ZedGraph.ZedGraphControl.LinkEvent"/>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.ContextMenuBuilder">
            <summary>
            Subscribe to this event to be able to modify the ZedGraph context menu.
            </summary>
            <remarks>
            The context menu is built on the fly after a right mouse click.  You can add menu items
            to this menu by simply modifying the <see paramref="menu"/> parameter.
            </remarks>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.ZoomEvent">
            <summary>
            Subscribe to this event to be notified when the <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> is zoomed or panned by the user,
            either via a mouse drag operation or by the context menu commands.
            </summary>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.ScrollDoneEvent">
            <summary>
            Subscribe to this event to be notified when the <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> is scrolled by the user
            using the scrollbars.
            </summary>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.ScrollProgressEvent">
            <summary>
            Subscribe to this event to be notified when the <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> is scrolled by the user
            using the scrollbars.
            </summary>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.PointEditEvent">
            <summary>
            Subscribe to this event to receive notifcation and/or respond after a data
            point has been edited via <see cref="P:ZedGraph.ZedGraphControl.IsEnableHEdit"/> and <see cref="P:ZedGraph.ZedGraphControl.IsEnableVEdit"/>.
            </summary>
            <example>
            <para>To subscribe to this event, use the following in your Form_Load method:</para>
            <code>zedGraphControl1.PointEditEvent +=
            new ZedGraphControl.PointEditHandler( MyPointEditHandler );</code>
            <para>Add this method to your Form1.cs:</para>
            <code>
               private string MyPointEditHandler( object sender, GraphPane pane, CurveItem curve, int iPt )
               {
                   PointPair pt = curve[iPt];
                   return "This value is " + pt.Y.ToString("f2") + " gallons";
               }</code>
            </example>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.PointValueEvent">
            <summary>
            Subscribe to this event to provide custom formatting for the tooltips
            </summary>
            <example>
            <para>To subscribe to this event, use the following in your FormLoad method:</para>
            <code>zedGraphControl1.PointValueEvent +=
            new ZedGraphControl.PointValueHandler( MyPointValueHandler );</code>
            <para>Add this method to your Form1.cs:</para>
            <code>
               private string MyPointValueHandler( object sender, GraphPane pane, CurveItem curve, int iPt )
               {
               #region
                   PointPair pt = curve[iPt];
                   return "This value is " + pt.Y.ToString("f2") + " gallons";
               #endregion
               }</code>
            </example>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.MouseDownEvent">
            <summary>
            Subscribe to this event to provide notification of MouseDown clicks on graph
            objects
            </summary>
            <remarks>
            This event provides for a notification when the mouse is clicked on an object
            within any <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> of the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> associated
            with this <see cref="T:ZedGraph.ZedGraphControl"/>.  This event will use the
            <see cref="M:ZedGraph.MasterPane.FindNearestPaneObject(System.Drawing.PointF,System.Drawing.Graphics,ZedGraph.GraphPane@,System.Object@,System.Int32@)"/> method to determine which object
            was clicked.  The boolean value that you return from this handler determines whether
            or not the <see cref="T:ZedGraph.ZedGraphControl"/> will do any further handling of the
            MouseDown event (see <see cref="T:ZedGraph.ZedGraphControl.ZedMouseEventHandler"/>).  Return true if you have
            handled the MouseDown event entirely, and you do not
            want the <see cref="T:ZedGraph.ZedGraphControl"/> to do any further action (e.g., starting
            a zoom operation).  Return false if ZedGraph should go ahead and process the
            MouseDown event.
            </remarks>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.MouseDown">
            <summary>
            Hide the standard control MouseDown event so that the ZedGraphControl.MouseDownEvent
            can be used.  This is so that the user must return true/false in order to indicate
            whether or not we should respond to the event.
            </summary>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.MouseUp">
            <summary>
            Hide the standard control MouseUp event so that the ZedGraphControl.MouseUpEvent
            can be used.  This is so that the user must return true/false in order to indicate
            whether or not we should respond to the event.
            </summary>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.MouseMove">
            <summary>
            Hide the standard control MouseMove event so that the ZedGraphControl.MouseMoveEvent
            can be used.  This is so that the user must return true/false in order to indicate
            whether or not we should respond to the event.
            </summary>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.MouseUpEvent">
            <summary>
            Subscribe to this event to provide notification of MouseUp clicks on graph
            objects
            </summary>
            <remarks>
            This event provides for a notification when the mouse is clicked on an object
            within any <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> of the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> associated
            with this <see cref="T:ZedGraph.ZedGraphControl"/>.  This event will use the
            <see cref="M:ZedGraph.MasterPane.FindNearestPaneObject(System.Drawing.PointF,System.Drawing.Graphics,ZedGraph.GraphPane@,System.Object@,System.Int32@)"/> method to determine which object
            was clicked.  The boolean value that you return from this handler determines whether
            or not the <see cref="T:ZedGraph.ZedGraphControl"/> will do any further handling of the
            MouseUp event (see <see cref="T:ZedGraph.ZedGraphControl.ZedMouseEventHandler"/>).  Return true if you have
            handled the MouseUp event entirely, and you do not
            want the <see cref="T:ZedGraph.ZedGraphControl"/> to do any further action (e.g., starting
            a zoom operation).  Return false if ZedGraph should go ahead and process the
            MouseUp event.
            </remarks>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.MouseMoveEvent">
            <summary>
            Subscribe to this event to provide notification of MouseMove events over graph
            objects
            </summary>
            <remarks>
            This event provides for a notification when the mouse is moving over on the control.
            The boolean value that you return from this handler determines whether
            or not the <see cref="T:ZedGraph.ZedGraphControl"/> will do any further handling of the
            MouseMove event (see <see cref="T:ZedGraph.ZedGraphControl.ZedMouseEventHandler"/>).  Return true if you
            have handled the MouseMove event entirely, and you do not
            want the <see cref="T:ZedGraph.ZedGraphControl"/> to do any further action.
            Return false if ZedGraph should go ahead and process the MouseMove event.
            </remarks>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.DoubleClickEvent">
            <summary>
            Subscribe to this event to provide notification of Double Clicks on graph
            objects
            </summary>
            <remarks>
            This event provides for a notification when the mouse is double-clicked on an object
            within any <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> of the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> associated
            with this <see cref="T:ZedGraph.ZedGraphControl"/>.  This event will use the
            <see cref="M:ZedGraph.MasterPane.FindNearestPaneObject(System.Drawing.PointF,System.Drawing.Graphics,ZedGraph.GraphPane@,System.Object@,System.Int32@)"/> method to determine which object
            was clicked.  The boolean value that you return from this handler determines whether
            or not the <see cref="T:ZedGraph.ZedGraphControl"/> will do any further handling of the
            DoubleClick event (see <see cref="T:ZedGraph.ZedGraphControl.ZedMouseEventHandler"/>).  Return true if you have
            handled the DoubleClick event entirely, and you do not
            want the <see cref="T:ZedGraph.ZedGraphControl"/> to do any further action. 
            Return false if ZedGraph should go ahead and process the
            DoubleClick event.
            </remarks>
        </member>
        <member name="E:ZedGraph.ZedGraphControl.LinkEvent">
            <summary>
            Subscribe to this event to be able to respond to mouse clicks within linked
            objects.
            </summary>
            <remarks>
            Linked objects are typically either <see cref="T:ZedGraph.GraphObj"/> type objects or
            <see cref="T:ZedGraph.CurveItem"/> type objects.  These object types can include
            hyperlink information allowing for "drill-down" type operation.  
            </remarks>
            <seealso cref="T:ZedGraph.ZedGraphControl.LinkEventHandler"/>
            <seealso cref="T:ZedGraph.Link"/>
            <seealso cref="P:ZedGraph.CurveItem.Link">CurveItem.Link</seealso>
            <seealso cref="P:ZedGraph.GraphObj.Link">GraphObj.Link</seealso>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.MasterPane">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.MasterPane"/> property for the control
            </summary>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.GraphPane">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.GraphPane"/> property for the control
            </summary>
            <remarks>
            <see cref="T:ZedGraph.ZedGraphControl"/> actually uses a <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> object
            to hold a list of <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> objects.  This property really only
            accesses the first <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> in the list.  If there is more
            than one <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/>, use the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/>
            indexer property to access any of the <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> objects.</remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsAntiAlias">
            <summary>
            Gets or sets a value that determines if all drawing operations for this control
            will be forced to operate in Anti-alias mode.  Note that if this value is set to
            "true", it overrides the setting for sub-objects.  Otherwise, the sub-object settings
            (such as <see cref="P:ZedGraph.FontSpec.IsAntiAlias"/>)
            will be honored.
            </summary>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsShowPointValues">
            <summary>
            Gets or sets a value that determines whether or not tooltips will be displayed
            when the mouse hovers over data values.
            </summary>
            <remarks>The displayed values are taken from <see cref="F:ZedGraph.PointPair.Tag"/>
            if it is a <see cref="T:System.String"/> type, or <see cref="M:ZedGraph.PointPairBase.ToString"/>
            otherwise (using the <see cref="P:ZedGraph.ZedGraphControl.PointValueFormat"/> as a format string).
            Additionally, the user can custom format the values using the
            <see cref="E:ZedGraph.ZedGraphControl.PointValueEvent"/> event.  Note that <see cref="P:ZedGraph.ZedGraphControl.IsShowPointValues"/>
            may be overridden by <see cref="P:ZedGraph.ZedGraphControl.IsShowCursorValues"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsShowCursorValues">
            <summary>
            Gets or sets a value that determines whether or not tooltips will be displayed
            showing the current scale values when the mouse is within the
            <see cref="P:ZedGraph.Chart.Rect"/>.
            </summary>
            <remarks>The displayed values are taken from the current mouse position, and formatted
            according to <see cref="P:ZedGraph.ZedGraphControl.PointValueFormat"/> and/or <see cref="P:ZedGraph.ZedGraphControl.PointDateFormat"/>.  If this
            value is set to true, it overrides the <see cref="P:ZedGraph.ZedGraphControl.IsShowPointValues"/> setting.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsEnableHEdit">
            <summary>
            Gets or sets a value that determines whether or not editing of point data is allowed in
            the horizontal direction.
            </summary>
            <remarks>
            Editing is done by holding down the Alt key, and left-clicking on an individual point of
            a given <see cref="T:ZedGraph.CurveItem"/> to drag it to a new location.  The Mouse and Key
            combination for this mode are modifiable using <see cref="P:ZedGraph.ZedGraphControl.EditButtons"/> and
            <see cref="P:ZedGraph.ZedGraphControl.EditModifierKeys"/>.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.EditButtons"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.EditModifierKeys"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.IsEnableVEdit"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsEnableVEdit">
            <summary>
            Gets or sets a value that determines whether or not editing of point data is allowed in
            the vertical direction.
            </summary>
            <remarks>
            Editing is done by holding down the Alt key, and left-clicking on an individual point of
            a given <see cref="T:ZedGraph.CurveItem"/> to drag it to a new location.  The Mouse and Key
            combination for this mode are modifiable using <see cref="P:ZedGraph.ZedGraphControl.EditButtons"/> and
            <see cref="P:ZedGraph.ZedGraphControl.EditModifierKeys"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsEnableZoom">
            <summary>
            Gets or sets a value that determines whether or not zooming is allowed for the control.
            </summary>
            <remarks>
            Zooming is done by left-clicking inside the <see cref="P:ZedGraph.Chart.Rect"/> to drag
            out a rectangle, indicating the new scale ranges that will be part of the graph.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsEnableHZoom">
            <summary>
            Gets or sets a value that determines whether or not zooming is allowed for the control in
            the horizontal direction.
            </summary>
            <remarks>
            Zooming is done by left-clicking inside the <see cref="P:ZedGraph.Chart.Rect"/> to drag
            out a rectangle, indicating the new scale ranges that will be part of the graph.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsEnableVZoom">
            <summary>
            Gets or sets a value that determines whether or not zooming is allowed for the control in
            the vertical direction.
            </summary>
            <remarks>
            Zooming is done by left-clicking inside the <see cref="P:ZedGraph.Chart.Rect"/> to drag
            out a rectangle, indicating the new scale ranges that will be part of the graph.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsEnableHPan">
            <summary>
            Gets or sets a value that determines whether or not panning is allowed for the control in
            the horizontal direction.
            </summary>
            <remarks>
            Panning is done by clicking the middle mouse button (or holding down the shift key
            while clicking the left mouse button) inside the <see cref="P:ZedGraph.Chart.Rect"/> and
            dragging the mouse around to shift the scale ranges as desired.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsEnableVPan">
            <summary>
            Gets or sets a value that determines whether or not panning is allowed for the control in
            the vertical direction.
            </summary>
            <remarks>
            Panning is done by clicking the middle mouse button (or holding down the shift key
            while clicking the left mouse button) inside the <see cref="P:ZedGraph.Chart.Rect"/> and
            dragging the mouse around to shift the scale ranges as desired.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.IsEnableHPan"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsShowContextMenu">
            <summary>
            Gets or sets a value that determines whether or not the context menu will be available.
            </summary>
            <remarks>The context menu is a menu that appears when you right-click on the
            <see cref="T:ZedGraph.ZedGraphControl"/>.  It provides options for Zoom, Pan, AutoScale, Clipboard
            Copy, and toggle <see cref="P:ZedGraph.ZedGraphControl.IsShowPointValues"/>.
            </remarks>
            <value>true to allow the context menu, false to disable it</value>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsShowCopyMessage">
            <summary>
            Gets or sets a value that determines whether or not a message box will be shown
            in response to a context menu "Copy" command.
            </summary>
            <remarks>
            Note that, if this property is set to false, the user will receive no
            indicative feedback in response to a Copy action.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.SaveFileDialog">
            <summary>
            Gets or sets the <see cref="P:ZedGraph.ZedGraphControl.SaveFileDialog"/> instance that will be used
            by the "Save As..." context menu item.
            </summary>
            <remarks>
            This provides the opportunity to modify the dialog, such as setting the
            <see cref="P:System.Windows.Forms.FileDialog.InitialDirectory"/> property.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsPrintKeepAspectRatio">
            <summary>
            Gets or sets a value that determines whether or not the visible aspect ratio of the
            <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/> will be preserved
            when printing this <see cref="T:ZedGraph.ZedGraphControl"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsPrintFillPage">
            <summary>
            Gets or sets a value that determines whether or not the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/>
            <see cref="P:ZedGraph.PaneBase.Rect"/> dimensions will be expanded to fill the
            available space when printing this <see cref="T:ZedGraph.ZedGraphControl"/>.
            </summary>
            <remarks>
            If <see cref="P:ZedGraph.ZedGraphControl.IsPrintKeepAspectRatio"/> is also true, then the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/>
            <see cref="P:ZedGraph.PaneBase.Rect"/> dimensions will be expanded to fit as large
            a space as possible while still honoring the visible aspect ratio.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsPrintScaleAll">
            <summary>
            Gets or sets a value that determines whether the settings of
            <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/> and <see cref="P:ZedGraph.PaneBase.IsPenWidthScaled"/>
            will be overridden to true during printing operations.
            </summary>
            <remarks>
            Printing involves pixel maps that are typically of a dramatically different dimension
            than on-screen pixel maps.  Therefore, it becomes more important to scale the fonts and
            lines to give a printed image that looks like what is shown on-screen.  The default
            setting for <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/> is true, but the default
            setting for <see cref="P:ZedGraph.PaneBase.IsPenWidthScaled"/> is false.
            </remarks>
            <value>
            A value of true will cause both <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/> and
            <see cref="P:ZedGraph.PaneBase.IsPenWidthScaled"/> to be temporarily set to true during
            printing operations.
            </value>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsAutoScrollRange">
            <summary>
            Gets or sets a value that controls whether or not the axis value range for the scroll
            bars will be set automatically.
            </summary>
            <remarks>
            If this value is set to true, then the range of the scroll bars will be set automatically
            to the actual range of the data as returned by <see cref="M:ZedGraph.CurveList.GetRange(System.Boolean,System.Boolean,ZedGraph.GraphPane)"/> at the
            time that <see cref="M:ZedGraph.ZedGraphControl.AxisChange"/> was last called.  Note that a value of true
            can override any setting of <see cref="P:ZedGraph.ZedGraphControl.ScrollMinX"/>, <see cref="P:ZedGraph.ZedGraphControl.ScrollMaxX"/>,
            <see cref="P:ZedGraph.ZedGraphControl.ScrollMinY"/>, <see cref="P:ZedGraph.ZedGraphControl.ScrollMaxY"/>, 
            <see cref="P:ZedGraph.ZedGraphControl.ScrollMinY2"/>, and <see cref="P:ZedGraph.ZedGraphControl.ScrollMaxY2"/>.  Note also that you must
            call <see cref="M:ZedGraph.ZedGraphControl.AxisChange"/> from the <see cref="T:ZedGraph.ZedGraphControl"/> for this to
            work properly (e.g., don't call it directly from the <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/>.
            Alternatively, you can call <see cref="M:ZedGraph.ZedGraphControl.SetScrollRangeFromData"/> at anytime to set
            the scroll bar range.<br/>
            <b>In most cases, you will probably want to disable
            <see cref="P:ZedGraph.GraphPane.IsBoundedRanges"/> before activating this option.</b>
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ScrollGrace">
            <summary>
            Set a "grace" value that leaves a buffer area around the data when
            <see cref="P:ZedGraph.ZedGraphControl.IsAutoScrollRange"/> is true.
            </summary>
            <remarks>
            This value represents a fraction of the total range around each axis.  For example, if the
            axis ranges from 0 to 100, then a 0.05 value for ScrollGrace would set the scroll range
            to -5 to 105.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsShowHScrollBar">
            <summary>
            Gets or sets a value that determines if the horizontal scroll bar will be visible.
            </summary>
            <remarks>This scroll bar allows the display to be scrolled in the horizontal direction.
            Another option is display panning, in which the user can move the display around by
            clicking directly on it and dragging (see <see cref="P:ZedGraph.ZedGraphControl.IsEnableHPan"/> and <see cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/>).
            You can control the available range of scrolling with the <see cref="P:ZedGraph.ZedGraphControl.ScrollMinX"/> and
            <see cref="P:ZedGraph.ZedGraphControl.ScrollMaxX"/> properties.  Note that the scroll range can be set automatically by
            <see cref="P:ZedGraph.ZedGraphControl.IsAutoScrollRange"/>.<br/>
            <b>In most cases, you will probably want to disable
            <see cref="P:ZedGraph.GraphPane.IsBoundedRanges"/> before activating this option.</b>
            </remarks>
            <value>A boolean value.  true to display a horizontal scrollbar, false otherwise.</value>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsShowVScrollBar">
            <summary>
            Gets or sets a value that determines if the vertical scroll bar will be visible.
            </summary>
            <remarks>This scroll bar allows the display to be scrolled in the vertical direction.
            Another option is display panning, in which the user can move the display around by
            clicking directly on it and dragging (see <see cref="P:ZedGraph.ZedGraphControl.IsEnableHPan"/> and <see cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/>).
            You can control the available range of scrolling with the <see cref="P:ZedGraph.ZedGraphControl.ScrollMinY"/> and
            <see cref="P:ZedGraph.ZedGraphControl.ScrollMaxY"/> properties.
            Note that the vertical scroll bar only affects the <see cref="T:ZedGraph.YAxis"/>; it has no impact on
            the <see cref="T:ZedGraph.Y2Axis"/>.  The panning options affect both the <see cref="T:ZedGraph.YAxis"/> and
            <see cref="T:ZedGraph.Y2Axis"/>.  Note also that the scroll range can be set automatically by
            <see cref="P:ZedGraph.ZedGraphControl.IsAutoScrollRange"/>.<br/>
            <b>In most cases, you will probably want to disable
            <see cref="P:ZedGraph.GraphPane.IsBoundedRanges"/> before activating this option.</b>
            </remarks>
            <value>A boolean value.  true to display a vertical scrollbar, false otherwise.</value>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsSynchronizeXAxes">
            <summary>
            Gets or sets a value that determines if the <see cref="T:ZedGraph.XAxis"/> <see cref="T:ZedGraph.Scale"/>
            ranges for all <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> objects in the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> will
            be forced to match.
            </summary>
            <remarks>
            If set to true (default is false), then all of the <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> objects
            in the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> associated with this <see cref="T:ZedGraph.ZedGraphControl"/>
            will be forced to have matching scale ranges for the x axis.  That is, zoom, pan,
            and scroll operations will result in zoom/pan/scroll for all graphpanes simultaneously.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsSynchronizeYAxes">
            <summary>
            Gets or sets a value that determines if the <see cref="T:ZedGraph.YAxis"/> <see cref="T:ZedGraph.Scale"/>
            ranges for all <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> objects in the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> will
            be forced to match.
            </summary>
            <remarks>
            If set to true (default is false), then all of the <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> objects
            in the <see cref="P:ZedGraph.ZedGraphControl.MasterPane"/> associated with this <see cref="T:ZedGraph.ZedGraphControl"/>
            will be forced to have matching scale ranges for the y axis.  That is, zoom, pan,
            and scroll operations will result in zoom/pan/scroll for all graphpanes simultaneously.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsScrollY2">
            <summary>
            Gets or sets a value that determines if the vertical scroll bar will affect the Y2 axis.
            </summary>
            <remarks>
            The vertical scroll bar is automatically associated with the Y axis.  With this value, you
            can choose to include or exclude the Y2 axis with the scrolling.  Note that the Y2 axis
            scrolling is handled as a secondary.  The vertical scroll bar position always reflects
            the status of the Y axis.  This can cause the Y2 axis to "jump" when first scrolled if
            the <see cref="P:ZedGraph.ZedGraphControl.ScrollMinY2"/> and <see cref="P:ZedGraph.ZedGraphControl.ScrollMaxY2"/> values are not set to the
            same proportions as <see cref="P:ZedGraph.ZedGraphControl.ScrollMinY"/> and <see cref="P:ZedGraph.ZedGraphControl.ScrollMaxY"/> with respect
            to the actual <see cref="P:ZedGraph.Scale.Min"/> and <see cref="P:ZedGraph.Scale.Max"/>.  Also note that
            this property is actually just an alias to the <see cref="P:ZedGraph.ScrollRange.IsScrollable"/>
            property of the first element of <see cref="P:ZedGraph.ZedGraphControl.YScrollRangeList"/>.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.IsShowVScrollBar"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ScrollMinY2"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ScrollMaxY2"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.YScrollRangeList"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.Y2ScrollRangeList"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.YScrollRangeList">
            <summary>
            Access the <see cref="T:ZedGraph.ScrollRangeList"/> for the Y axes.
            </summary>
            <remarks>
            This list maintains the user scale ranges for the scroll bars for each axis
            in the <see cref="P:ZedGraph.GraphPane.YAxisList"/>.  Each ordinal location in
            <see cref="P:ZedGraph.ZedGraphControl.YScrollRangeList"/> corresponds to an equivalent ordinal location
            in <see cref="P:ZedGraph.GraphPane.YAxisList"/>.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.ScrollMinY"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ScrollMaxY"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.Y2ScrollRangeList">
            <summary>
            Access the <see cref="T:ZedGraph.ScrollRangeList"/> for the Y2 axes.
            </summary>
            <remarks>
            This list maintains the user scale ranges for the scroll bars for each axis
            in the <see cref="P:ZedGraph.GraphPane.Y2AxisList"/>.  Each ordinal location in
            <see cref="P:ZedGraph.ZedGraphControl.Y2ScrollRangeList"/> corresponds to an equivalent ordinal location
            in <see cref="P:ZedGraph.GraphPane.Y2AxisList"/>.
            </remarks>
            <seealso cref="P:ZedGraph.ZedGraphControl.ScrollMinY2"/>
            <seealso cref="P:ZedGraph.ZedGraphControl.ScrollMaxY2"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ScrollMinX">
            <summary>
            The minimum value for the X axis scroll range.
            </summary>
            <remarks>
            Effectively, the minimum endpoint of the scroll range will cause the
            <see cref="P:ZedGraph.Scale.Min"/> value to be set to <see cref="P:ZedGraph.ZedGraphControl.ScrollMinX"/>.  Note that this
            value applies only to the scroll bar settings.  Axis panning (see <see cref="P:ZedGraph.ZedGraphControl.IsEnableHPan"/>)
            is not affected by this value.  Note that this value can be overridden by
            <see cref="P:ZedGraph.ZedGraphControl.IsAutoScrollRange"/> and <see cref="M:ZedGraph.ZedGraphControl.SetScrollRangeFromData"/>.
            </remarks>
            <value>A double value indicating the minimum axis value</value>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ScrollMaxX">
            <summary>
            The maximum value for the X axis scroll range.
            </summary>
            <remarks>
            Effectively, the maximum endpoint of the scroll range will cause the
            <see cref="P:ZedGraph.Scale.Max"/> value to be set to <see cref="P:ZedGraph.ZedGraphControl.ScrollMaxX"/>.  Note that this
            value applies only to the scroll bar settings.  Axis panning (see <see cref="P:ZedGraph.ZedGraphControl.IsEnableHPan"/>)
            is not affected by this value.  Note that this value can be overridden by
            <see cref="P:ZedGraph.ZedGraphControl.IsAutoScrollRange"/> and <see cref="M:ZedGraph.ZedGraphControl.SetScrollRangeFromData"/>.
            </remarks>
            <value>A double value indicating the maximum axis value</value>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ScrollMinY">
            <summary>
            The minimum value for the Y axis scroll range.
            </summary>
            <remarks>
            Effectively, the minimum endpoint of the scroll range will cause the
            <see cref="P:ZedGraph.Scale.Min"/> value to be set to <see cref="P:ZedGraph.ZedGraphControl.ScrollMinY"/>.  Note that this
            value applies only to the scroll bar settings.  Axis panning (see <see cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/>)
            is not affected by this value.  Note that this value can be overridden by
            <see cref="P:ZedGraph.ZedGraphControl.IsAutoScrollRange"/> and <see cref="M:ZedGraph.ZedGraphControl.SetScrollRangeFromData"/>.  Also note that
            this property is actually just an alias to the <see cref="P:ZedGraph.ScrollRange.Min"/>
            property of the first element of <see cref="P:ZedGraph.ZedGraphControl.YScrollRangeList"/>.
            </remarks>
            <value>A double value indicating the minimum axis value</value>
            <seealso cref="P:ZedGraph.ZedGraphControl.YScrollRangeList"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ScrollMaxY">
            <summary>
            The maximum value for the Y axis scroll range.
            </summary>
            <remarks>
            Effectively, the maximum endpoint of the scroll range will cause the
            <see cref="P:ZedGraph.Scale.Max"/> value to be set to <see cref="P:ZedGraph.ZedGraphControl.ScrollMaxY"/>.  Note that this
            value applies only to the scroll bar settings.  Axis panning (see <see cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/>)
            is not affected by this value.  Note that this value can be overridden by
            <see cref="P:ZedGraph.ZedGraphControl.IsAutoScrollRange"/> and <see cref="M:ZedGraph.ZedGraphControl.SetScrollRangeFromData"/>.  Also note that
            this property is actually just an alias to the <see cref="P:ZedGraph.ScrollRange.Max"/>
            property of the first element of <see cref="P:ZedGraph.ZedGraphControl.YScrollRangeList"/>.
            </remarks>
            <value>A double value indicating the maximum axis value</value>
            <seealso cref="P:ZedGraph.ZedGraphControl.YScrollRangeList"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ScrollMinY2">
            <summary>
            The minimum value for the Y2 axis scroll range.
            </summary>
            <remarks>
            Effectively, the minimum endpoint of the scroll range will cause the
            <see cref="P:ZedGraph.Scale.Min"/> value to be set to <see cref="P:ZedGraph.ZedGraphControl.ScrollMinY2"/>.  Note that this
            value applies only to the scroll bar settings.  Axis panning (see <see cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/>)
            is not affected by this value.  Note that this value can be overridden by
            <see cref="P:ZedGraph.ZedGraphControl.IsAutoScrollRange"/> and <see cref="M:ZedGraph.ZedGraphControl.SetScrollRangeFromData"/>.  Also note that
            this property is actually just an alias to the <see cref="P:ZedGraph.ScrollRange.Min"/>
            property of the first element of <see cref="P:ZedGraph.ZedGraphControl.Y2ScrollRangeList"/>.
            </remarks>
            <value>A double value indicating the minimum axis value</value>
            <seealso cref="P:ZedGraph.ZedGraphControl.Y2ScrollRangeList"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ScrollMaxY2">
            <summary>
            The maximum value for the Y2 axis scroll range.
            </summary>
            <remarks>
            Effectively, the maximum endpoint of the scroll range will cause the
            <see cref="P:ZedGraph.Scale.Max"/> value to be set to <see cref="P:ZedGraph.ZedGraphControl.ScrollMaxY2"/>.  Note that this
            value applies only to the scroll bar settings.  Axis panning (see <see cref="P:ZedGraph.ZedGraphControl.IsEnableVPan"/>)
            is not affected by this value.  Note that this value can be overridden by
            <see cref="P:ZedGraph.ZedGraphControl.IsAutoScrollRange"/> and <see cref="M:ZedGraph.ZedGraphControl.SetScrollRangeFromData"/>.  Also note that
            this property is actually just an alias to the <see cref="P:ZedGraph.ScrollRange.Max"/>
            property of the first element of <see cref="P:ZedGraph.ZedGraphControl.Y2ScrollRangeList"/>.
            </remarks>
            <value>A double value indicating the maximum axis value</value>
            <seealso cref="P:ZedGraph.ZedGraphControl.Y2ScrollRangeList"/>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsScrolling">
            <summary>
            Returns true if the user is currently scrolling via the scrollbar, or
            false if no scrolling is taking place.
            </summary>
            <remarks>
            This method just tests ScrollBar.Capture to see if the
            mouse has been captured by the scroll bar.  If so, scrolling is active.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.PointValueFormat">
            <summary>
            Gets or sets the format for displaying tooltip values.
            This format is passed to <see cref="M:ZedGraph.PointPairBase.ToString(System.String)"/>.
            </summary>
            <remarks>
            Use the <see cref="T:System.Globalization.NumberFormatInfo"/> type
            to determine the format strings.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.PointDateFormat">
            <summary>
            Gets or sets the format for displaying tooltip values.
            This format is passed to <see cref="M:ZedGraph.XDate.ToString(System.String)"/>.
            </summary>
            <remarks>
            Use the <see cref="T:System.Globalization.DateTimeFormatInfo"/> type
            to determine the format strings.
            </remarks>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.ZoomStepFraction">
            <summary>
            Gets or sets the step size fraction for zooming with the mouse wheel.
            A value of 0.1 will result in a 10% zoom step for each mouse wheel movement.
            </summary>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsZoomOnMouseCenter">
            <summary>
            Gets or sets a boolean value that determines if zooming with the wheel mouse
            is centered on the mouse location, or centered on the existing graph.
            </summary>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.BeenDisposed">
            <summary>
            This checks if the control has been disposed.  This is synonymous with
            the graph pane having been nulled or disposed.  Therefore this is the
            same as <c>ZedGraphControl.GraphPane == null</c>.
            </summary>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.Selection">
            <summary>
            Readonly property that gets the list of selected CurveItems
            </summary>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.IsEnableSelection">
            <summary>
            Gets or sets a value that determines whether or not selection is allowed for the control.
            </summary>
        </member>
        <member name="P:ZedGraph.ZedGraphControl.PrintDocument">
            <summary>
            Gets or sets the <see cref="T:System.Drawing.Printing.PrintDocument"/> instance
            that is used for all of the context menu printing functions.
            </summary>
        </member>
        <member name="T:ZedGraph.ZedGraphControl.ContextMenuBuilderEventHandler">
            <summary>
            A delegate that allows subscribing methods to append or modify the context menu.
            </summary>
            <param name="sender">The source <see cref="T:ZedGraph.ZedGraphControl"/> object</param>
            <param name="menuStrip">A reference to the <see cref="T:System.Windows.Forms.ContextMenuStrip"/> object
            that contains the context menu.
            </param>
            <param name="mousePt">The point at which the mouse was clicked</param>
            <param name="objState">The current context menu state</param>
            <seealso cref="E:ZedGraph.ZedGraphControl.ContextMenuBuilder"/>
        </member>
        <member name="T:ZedGraph.ZedGraphControl.ZoomEventHandler">
            <summary>
            A delegate that allows notification of zoom and pan events.
            </summary>
            <param name="sender">The source <see cref="T:ZedGraph.ZedGraphControl"/> object</param>
            <param name="oldState">A <see cref="T:ZedGraph.ZoomState"/> object that corresponds to the state of the
            <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> before the zoom or pan event.</param>
            <param name="newState">A <see cref="T:ZedGraph.ZoomState"/> object that corresponds to the state of the
            <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> after the zoom or pan event</param>
            <seealso cref="E:ZedGraph.ZedGraphControl.ZoomEvent"/>
        </member>
        <member name="T:ZedGraph.ZedGraphControl.ScrollDoneHandler">
            <summary>
            A delegate that allows notification of scroll events.
            </summary>
            <param name="sender">The source <see cref="T:ZedGraph.ZedGraphControl"/> object</param>
            <param name="scrollBar">The source <see cref="T:System.Windows.Forms.ScrollBar"/> object</param>
            <param name="oldState">A <see cref="T:ZedGraph.ZoomState"/> object that corresponds to the state of the
            <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> before the scroll event.</param>
            <param name="newState">A <see cref="T:ZedGraph.ZoomState"/> object that corresponds to the state of the
            <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> after the scroll event</param>
            <seealso cref="E:ZedGraph.ZedGraphControl.ZoomEvent"/>
        </member>
        <member name="T:ZedGraph.ZedGraphControl.ScrollProgressHandler">
            <summary>
            A delegate that allows notification of scroll events.
            </summary>
            <param name="sender">The source <see cref="T:ZedGraph.ZedGraphControl"/> object</param>
            <param name="scrollBar">The source <see cref="T:System.Windows.Forms.ScrollBar"/> object</param>
            <param name="oldState">A <see cref="T:ZedGraph.ZoomState"/> object that corresponds to the state of the
            <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> before the scroll event.</param>
            <param name="newState">A <see cref="T:ZedGraph.ZoomState"/> object that corresponds to the state of the
            <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> after the scroll event</param>
            <seealso cref="E:ZedGraph.ZedGraphControl.ZoomEvent"/>
        </member>
        <member name="T:ZedGraph.ZedGraphControl.PointEditHandler">
            <summary>
            A delegate that receives notification after a point-edit operation is completed.
            </summary>
            <param name="sender">The source <see cref="T:ZedGraph.ZedGraphControl"/> object</param>
            <param name="pane">The <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> object that contains the
            point that has been edited</param>
            <param name="curve">The <see cref="T:ZedGraph.CurveItem"/> object that contains the point
            that has been edited</param>
            <param name="iPt">The integer index of the edited <see cref="T:ZedGraph.PointPair"/> within the
            <see cref="T:ZedGraph.IPointList"/> of the selected <see cref="T:ZedGraph.CurveItem"/>
            </param>
            <seealso cref="E:ZedGraph.ZedGraphControl.PointValueEvent"/>
        </member>
        <member name="T:ZedGraph.ZedGraphControl.PointValueHandler">
            <summary>
            A delegate that allows custom formatting of the point value tooltips
            </summary>
            <param name="sender">The source <see cref="T:ZedGraph.ZedGraphControl"/> object</param>
            <param name="pane">The <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> object that contains the point value of interest</param>
            <param name="curve">The <see cref="T:ZedGraph.CurveItem"/> object that contains the point value of interest</param>
            <param name="iPt">The integer index of the selected <see cref="T:ZedGraph.PointPair"/> within the
            <see cref="T:ZedGraph.IPointList"/> of the selected <see cref="T:ZedGraph.CurveItem"/></param>
            <seealso cref="E:ZedGraph.ZedGraphControl.PointValueEvent"/>
        </member>
        <member name="T:ZedGraph.ZedGraphControl.ZedMouseEventHandler">
            <summary>
            A delegate that allows notification of mouse events on Graph objects.
            </summary>
            <param name="sender">The source <see cref="T:ZedGraph.ZedGraphControl"/> object</param>
            <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> corresponding to this event</param>
            <seealso cref="E:ZedGraph.ZedGraphControl.MouseDownEvent"/>
            <returns>
            Return true if you have handled the mouse event entirely, and you do not
            want the <see cref="T:ZedGraph.ZedGraphControl"/> to do any further action (e.g., starting
            a zoom operation).  Return false if ZedGraph should go ahead and process the
            mouse event.
            </returns>
        </member>
        <member name="T:ZedGraph.ZedGraphControl.LinkEventHandler">
            <summary>
            A delegate that allows notification of clicks on ZedGraph objects that have
            active links enabled
            </summary>
            <param name="sender">The source <see cref="T:ZedGraph.ZedGraphControl"/> object</param>
            <param name="pane">The source <see cref="P:ZedGraph.ZedGraphControl.GraphPane"/> in which the click
            occurred.
            </param>
            <param name="source">The source object which was clicked.  This is typically
            a type of <see cref="T:ZedGraph.CurveItem"/> if a curve point was clicked, or
            a type of <see cref="T:ZedGraph.GraphObj"/> if a graph object was clicked.
            </param>
            <param name="link">The <see cref="T:ZedGraph.Link"/> object, belonging to
            <paramref name="source"/>, that contains the link information
            </param>
            <param name="index">An index value, typically used if a <see cref="T:ZedGraph.CurveItem"/>
            was clicked, indicating the ordinal value of the actual point that was clicked.
            </param>
            <returns>
            Return true if you have handled the LinkEvent entirely, and you do not
            want the <see cref="T:ZedGraph.ZedGraphControl"/> to do any further action.
            Return false if ZedGraph should go ahead and process the LinkEvent.
            </returns>
        </member>
        <member name="T:ZedGraph.ZedGraphControl.ContextMenuObjectState">
            <summary>
            Public enumeration that specifies the type of 
            object present at the Context Menu's mouse location
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl.ContextMenuObjectState.InactiveSelection">
            <summary>
            The object is an Inactive Curve Item at the Context Menu's mouse position
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl.ContextMenuObjectState.ActiveSelection">
            <summary>
            The object is an active Curve Item at the Context Menu's mouse position
            </summary>
        </member>
        <member name="F:ZedGraph.ZedGraphControl.ContextMenuObjectState.Background">
            <summary>
            There is no selectable object present at the Context Menu's mouse position
            </summary>
        </member>
        <member name="T:ZedGraph.AxisType">
            <summary>
            Enumeration type for the various axis types that are available
            </summary>
            <seealso cref="P:ZedGraph.Axis.Type"/>
        </member>
        <member name="F:ZedGraph.AxisType.Linear">
            <summary> An ordinary, cartesian axis </summary>
        </member>
        <member name="F:ZedGraph.AxisType.Log">
            <summary> A base 10 log axis </summary>
        </member>
        <member name="F:ZedGraph.AxisType.Date">
            <summary> A cartesian axis with calendar dates or times </summary>
        </member>
        <member name="F:ZedGraph.AxisType.Text">
            <summary> An ordinal axis with user-defined text labels.  An ordinal axis means that
            all data points are evenly spaced at integral values, and the actual coordinate values
            for points corresponding to that axis are ignored.  That is, if the X axis is an
            ordinal type, then all X values associated with the curves are ignored.</summary>
            <seealso cref="F:ZedGraph.AxisType.Ordinal"/>
            <seealso cref="P:ZedGraph.Scale.IsText"/>
            <seealso cref="F:ZedGraph.Scale.Default.MaxTextLabels"/>
        </member>
        <member name="F:ZedGraph.AxisType.Ordinal">
            <summary> An ordinal axis with regular numeric labels.  An ordinal axis means that
            all data points are evenly spaced at integral values, and the actual coordinate values
            for points corresponding to that axis are ignored.  That is, if the X axis is an
            ordinal type, then all X values associated with the curves are ignored. </summary>
            <seealso cref="F:ZedGraph.AxisType.Text"/>
            <seealso cref="P:ZedGraph.Scale.IsOrdinal"/>
        </member>
        <member name="F:ZedGraph.AxisType.DateAsOrdinal">
            <summary> An ordinal axis that will have labels formatted with ordinal values corresponding
            to the number of values in each <see cref="T:ZedGraph.CurveItem"/>.
            </summary>
            <remarks>
            The <see cref="T:ZedGraph.CurveItem"/> data points will be evenly-spaced at ordinal locations, and the
            actual data values are ignored. </remarks>
            <seealso cref="F:ZedGraph.AxisType.Text"/>
            <seealso cref="P:ZedGraph.Scale.IsOrdinal"/>
        </member>
        <member name="F:ZedGraph.AxisType.LinearAsOrdinal">
            <summary> An ordinal axis that will have labels formatted with values from the actual data
            values of the first <see cref="T:ZedGraph.CurveItem"/> in the <see cref="T:ZedGraph.CurveList"/>.
            </summary>
            <remarks>
            Although the tics are labeled with real data values, the actual points will be
            evenly-spaced in spite of the data values.  For example, if the X values of the first curve
            are 1, 5, and 100, then the tic labels will show 1, 5, and 100, but they will be equal
            distance from each other. </remarks>
            <seealso cref="F:ZedGraph.AxisType.Text"/>
            <seealso cref="P:ZedGraph.Scale.IsOrdinal"/>
        </member>
        <member name="F:ZedGraph.AxisType.Exponent">
            <summary> An exponential axis </summary>
        </member>
        <member name="T:ZedGraph.FillType">
            <summary>
            Enumeration type for the various types of fills that can be used with <see cref="T:ZedGraph.Bar"/>
            charts.
            </summary>
        </member>
        <member name="F:ZedGraph.FillType.None">
            <summary> No fill </summary>
        </member>
        <member name="F:ZedGraph.FillType.Solid">
            <summary> A solid fill using <see cref="T:System.Drawing.SolidBrush"/> </summary>
        </member>
        <member name="F:ZedGraph.FillType.Brush">
            <summary> A custom fill using either <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/> or
            <see cref="T:System.Drawing.TextureBrush"/></summary>
        </member>
        <member name="F:ZedGraph.FillType.GradientByX">
            <summary>
            Fill with a single solid color based on the X value of the data.</summary>
            <remarks>The X value is
            used to determine the color value based on a gradient brush, and using a data range
            of <see cref="P:ZedGraph.Fill.RangeMin"/> and <see cref="P:ZedGraph.Fill.RangeMax"/>.  You can create a multicolor
            range by initializing the <see cref="T:ZedGraph.Fill"/> class with your own custom
            <see cref="F:ZedGraph.FillType.Brush"/> object based on a <see cref="T:System.Drawing.Drawing2D.ColorBlend"/>.  In cases where a
            data value makes no sense (<see cref="P:ZedGraph.PaneBase.Fill"/>, <see cref="P:ZedGraph.Legend.Fill"/>,
            etc.), a default value of 50% of the range is assumed.  The default range is 0 to 1.
            </remarks>
            <seealso cref="P:ZedGraph.Fill.RangeMin"/>
            <seealso cref="P:ZedGraph.Fill.RangeMax"/>
            <seealso cref="P:ZedGraph.Fill.RangeDefault"/>
        </member>
        <member name="F:ZedGraph.FillType.GradientByY">
            <summary>
            Fill with a single solid color based on the Z value of the data.</summary>
            <remarks>The Z value is
            used to determine the color value based on a gradient brush, and using a data range
            of <see cref="P:ZedGraph.Fill.RangeMin"/> and <see cref="P:ZedGraph.Fill.RangeMax"/>.  You can create a multicolor
            range by initializing the <see cref="T:ZedGraph.Fill"/> class with your own custom
            <see cref="F:ZedGraph.FillType.Brush"/> object based on a <see cref="T:System.Drawing.Drawing2D.ColorBlend"/>.  In cases where a
            data value makes no sense (<see cref="P:ZedGraph.PaneBase.Fill"/>, <see cref="P:ZedGraph.Legend.Fill"/>,
            etc.), a default value of 50% of the range is assumed.  The default range is 0 to 1.
            </remarks>
            <seealso cref="P:ZedGraph.Fill.RangeMin"/>
            <seealso cref="P:ZedGraph.Fill.RangeMax"/>
            <seealso cref="P:ZedGraph.Fill.RangeDefault"/>
        </member>
        <member name="F:ZedGraph.FillType.GradientByZ">
            <summary>
            Fill with a single solid color based on the Z value of the data.</summary>
            <remarks>The Z value is
            used to determine the color value based on a gradient brush, and using a data range
            of <see cref="P:ZedGraph.Fill.RangeMin"/> and <see cref="P:ZedGraph.Fill.RangeMax"/>.  You can create a multicolor
            range by initializing the <see cref="T:ZedGraph.Fill"/> class with your own custom
            <see cref="F:ZedGraph.FillType.Brush"/> object based on a <see cref="T:System.Drawing.Drawing2D.ColorBlend"/>.  In cases where a
            data value makes no sense (<see cref="P:ZedGraph.PaneBase.Fill"/>, <see cref="P:ZedGraph.Legend.Fill"/>,
            etc.), a default value of 50% of the range is assumed.  The default range is 0 to 1.
            </remarks>
            <seealso cref="P:ZedGraph.Fill.RangeMin"/>
            <seealso cref="P:ZedGraph.Fill.RangeMax"/>
            <seealso cref="P:ZedGraph.Fill.RangeDefault"/>
        </member>
        <member name="F:ZedGraph.FillType.GradientByColorValue">
            <summary>
            Fill with a single solid color based on the "ColorValue" property of the data.</summary>
            <remarks>The "ColorValue" property is
            used to determine the color value based on a gradient brush, and using a data range
            of <see cref="P:ZedGraph.Fill.RangeMin"/> and <see cref="P:ZedGraph.Fill.RangeMax"/>.  You can create a multicolor
            range by initializing the <see cref="T:ZedGraph.Fill"/> class with your own custom
            <see cref="F:ZedGraph.FillType.Brush"/> object based on a <see cref="T:System.Drawing.Drawing2D.ColorBlend"/>.  In cases where a
            data value makes no sense (<see cref="P:ZedGraph.PaneBase.Fill"/>, <see cref="P:ZedGraph.Legend.Fill"/>,
            etc.), a default value of 50% of the range is assumed.  The default range is 0 to 1.
            </remarks>
            <seealso cref="P:ZedGraph.Fill.RangeMin"/>
            <seealso cref="P:ZedGraph.Fill.RangeMax"/>
            <seealso cref="P:ZedGraph.Fill.RangeDefault"/>
        </member>
        <member name="T:ZedGraph.DateUnit">
            <summary>
            Enumeration type for the various axis date and time unit types that are available
            </summary>
        </member>
        <member name="F:ZedGraph.DateUnit.Year">
            <summary> Yearly units <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/>
            </summary>
        </member>
        <member name="F:ZedGraph.DateUnit.Month">
            <summary> Monthly units <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/>
            </summary>
        </member>
        <member name="F:ZedGraph.DateUnit.Day">
            <summary> Daily units <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/>
            </summary>
        </member>
        <member name="F:ZedGraph.DateUnit.Hour">
            <summary> Hourly units <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/>
            </summary>
        </member>
        <member name="F:ZedGraph.DateUnit.Minute">
            <summary> Minute units <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/>
            </summary>
        </member>
        <member name="F:ZedGraph.DateUnit.Second">
            <summary> Second units <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/>
            </summary>
        </member>
        <member name="F:ZedGraph.DateUnit.Millisecond">
            <summary> Millisecond units <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/>
            </summary>
        </member>
        <member name="T:ZedGraph.SymbolType">
            <summary>
            Enumeration type for the various symbol shapes that are available
            </summary>
            <seealso cref="P:ZedGraph.Symbol.Fill"/>
        </member>
        <member name="F:ZedGraph.SymbolType.Square">
            <summary> Square-shaped <see cref="T:ZedGraph.Symbol"/> </summary>
        </member>
        <member name="F:ZedGraph.SymbolType.Diamond">
            <summary> Rhombus-shaped <see cref="T:ZedGraph.Symbol"/> </summary>
        </member>
        <member name="F:ZedGraph.SymbolType.Triangle">
            <summary> Equilateral triangle <see cref="T:ZedGraph.Symbol"/> </summary>
        </member>
        <member name="F:ZedGraph.SymbolType.Circle">
            <summary> Uniform circle <see cref="T:ZedGraph.Symbol"/> </summary>
        </member>
        <member name="F:ZedGraph.SymbolType.XCross">
            <summary> "X" shaped <see cref="T:ZedGraph.Symbol"/>.  This symbol cannot
            be filled since it has no outline. </summary>
        </member>
        <member name="F:ZedGraph.SymbolType.Plus">
            <summary> "+" shaped <see cref="T:ZedGraph.Symbol"/>.  This symbol cannot
            be filled since it has no outline. </summary>
        </member>
        <member name="F:ZedGraph.SymbolType.Star">
            <summary> Asterisk-shaped <see cref="T:ZedGraph.Symbol"/>.  This symbol
            cannot be filled since it has no outline. </summary>
        </member>
        <member name="F:ZedGraph.SymbolType.TriangleDown">
            <summary> Unilateral triangle <see cref="T:ZedGraph.Symbol"/>, pointing
            down. </summary>
        </member>
        <member name="F:ZedGraph.SymbolType.HDash">
            <summary>
            Horizontal dash <see cref="T:ZedGraph.Symbol"/>.  This symbol cannot be
            filled since it has no outline.
            </summary>
        </member>
        <member name="F:ZedGraph.SymbolType.VDash">
            <summary>
            Vertical dash <see cref="T:ZedGraph.Symbol"/>.  This symbol cannot be
            filled since it has no outline.
            </summary>
        </member>
        <member name="F:ZedGraph.SymbolType.Default">
            <summary> A Default symbol type (the symbol type will be obtained
            from <see cref="F:ZedGraph.Symbol.Default.Type"/>. </summary>
        </member>
        <member name="F:ZedGraph.SymbolType.None">
            <summary> No symbol is shown (this is equivalent to using
            <see cref="P:ZedGraph.Symbol.IsVisible"/> = false.</summary>
        </member>
        <member name="T:ZedGraph.LegendPos">
            <summary>
            Enumeration type that defines the possible legend locations
            </summary>
            <seealso cref="P:ZedGraph.Legend.Position"/>
        </member>
        <member name="F:ZedGraph.LegendPos.Top">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> above the <see cref="P:ZedGraph.Chart.Rect"/>
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.Left">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> on the left side of the <see cref="P:ZedGraph.Chart.Rect"/>
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.Right">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> on the right side of the <see cref="P:ZedGraph.Chart.Rect"/>
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.Bottom">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> below the <see cref="P:ZedGraph.Chart.Rect"/>
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.InsideTopLeft">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> inside the <see cref="P:ZedGraph.Chart.Rect"/> in the
            top-left corner.  
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.InsideTopRight">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> inside the <see cref="P:ZedGraph.Chart.Rect"/> in the
            top-right corner. 
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.InsideBotLeft">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> inside the <see cref="P:ZedGraph.Chart.Rect"/> in the
            bottom-left corner.
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.InsideBotRight">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> inside the <see cref="P:ZedGraph.Chart.Rect"/> in the
            bottom-right corner. 
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.Float">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> as a floating object above the graph at the
            location specified by <see cref="P:ZedGraph.Legend.Location"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.TopCenter">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> centered above the <see cref="P:ZedGraph.Chart.Rect"/>
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.BottomCenter">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> centered below the <see cref="P:ZedGraph.Chart.Rect"/>
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.TopFlushLeft">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> above the <see cref="P:ZedGraph.Chart.Rect"/>, but flush
            against the left margin of the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.LegendPos.BottomFlushLeft">
            <summary>
            Locate the <see cref="T:ZedGraph.Legend"/> below the <see cref="P:ZedGraph.Chart.Rect"/>, but flush
            against the left margin of the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.AlignH">
            <summary>
            Enumeration type for the different horizontal text alignment options
            </summary>
            <seealso cref="T:ZedGraph.FontSpec"/>
        </member>
        <member name="F:ZedGraph.AlignH.Left">
            <summary>
            Position the text so that its left edge is aligned with the
            specified X,Y location.  Used by the
            <see cref="M:ZedGraph.FontSpec.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.AlignH.Center">
            <summary>
            Position the text so that its center is aligned (horizontally) with the
            specified X,Y location.  Used by the
            <see cref="M:ZedGraph.FontSpec.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.AlignH.Right">
            <summary>
            Position the text so that its right edge is aligned with the
            specified X,Y location.  Used by the
            <see cref="M:ZedGraph.FontSpec.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single)"/> method.
            </summary>
        </member>
        <member name="T:ZedGraph.AlignP">
            <summary>
            Enumeration type for the different proximal alignment options
            </summary>
            <seealso cref="T:ZedGraph.FontSpec"/>
            <seealso cref="P:ZedGraph.Scale.Align"/>
        </member>
        <member name="F:ZedGraph.AlignP.Inside">
            <summary>
            Position the text so that its "inside" edge (the edge that is
            nearest to the alignment reference point or object) is aligned.
            Used by the <see cref="P:ZedGraph.Scale.Align"/> method to align text
            to the axis.
            </summary>
        </member>
        <member name="F:ZedGraph.AlignP.Center">
            <summary>
            Position the text so that its center is aligned with the
            reference object or point.
            Used by the <see cref="P:ZedGraph.Scale.Align"/> method to align text
            to the axis.
            </summary>
        </member>
        <member name="F:ZedGraph.AlignP.Outside">
            <summary>
            Position the text so that its right edge (the edge that is
            farthest from the alignment reference point or object) is aligned.
            Used by the <see cref="P:ZedGraph.Scale.Align"/> method to align text
            to the axis.
            </summary>
        </member>
        <member name="T:ZedGraph.AlignV">
            <summary>
            Enumeration type for the different vertical text alignment options
            </summary>
            specified X,Y location.  Used by the
            <see cref="M:ZedGraph.FontSpec.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single)"/> method.
        </member>
        <member name="F:ZedGraph.AlignV.Top">
            <summary>
            Position the text so that its top edge is aligned with the
            specified X,Y location.  Used by the
            <see cref="M:ZedGraph.FontSpec.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.AlignV.Center">
            <summary>
            Position the text so that its center is aligned (vertically) with the
            specified X,Y location.  Used by the
            <see cref="M:ZedGraph.FontSpec.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.AlignV.Bottom">
            <summary>
            Position the text so that its bottom edge is aligned with the
            specified X,Y location.  Used by the
            <see cref="M:ZedGraph.FontSpec.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single)"/> method.
            </summary>
        </member>
        <member name="T:ZedGraph.CoordType">
            <summary>
            Enumeration type for the user-defined coordinate types available.
            These coordinate types are used the <see cref="T:ZedGraph.ArrowObj"/> objects
            and <see cref="T:ZedGraph.TextObj"/> objects only.
            </summary>
            <seealso cref="P:ZedGraph.Location.CoordinateFrame"/>
        </member>
        <member name="F:ZedGraph.CoordType.ChartFraction">
            <summary>
            Coordinates are specified as a fraction of the
            <see cref="P:ZedGraph.Chart.Rect"/>.  That is, for the X coordinate, 0.0
            is at the left edge of the ChartRect and 1.0
            is at the right edge of the ChartRect. A value less
            than zero is left of the ChartRect and a value
            greater than 1.0 is right of the ChartRect.  For the Y coordinate, 0.0
            is the top and 1.0 is the bottom.
            </summary>
        </member>
        <member name="F:ZedGraph.CoordType.PaneFraction">
            <summary>
            Coordinates are specified as a fraction of the
            <see cref="P:ZedGraph.PaneBase.Rect"/>.  That is, for the X coordinate, 0.0
            is at the left edge of the Rect and 1.0
            is at the right edge of the Rect. A value less
            than zero is left of the Rect and a value
            greater than 1.0 is right of the Rect.  For the Y coordinate, 0.0
            is the top and 1.0 is the bottom.  Note that
            any value less than zero or greater than 1.0 will be outside
            the Rect, and therefore clipped.
            </summary>
        </member>
        <member name="F:ZedGraph.CoordType.AxisXYScale">
            <summary>
            Coordinates are specified according to the user axis scales
            for the <see cref="P:ZedGraph.GraphPane.XAxis"/> and <see cref="P:ZedGraph.GraphPane.YAxis"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.CoordType.AxisXY2Scale">
            <summary>
            Coordinates are specified according to the user axis scales
            for the <see cref="P:ZedGraph.GraphPane.XAxis"/> and <see cref="P:ZedGraph.GraphPane.Y2Axis"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.CoordType.XChartFractionYPaneFraction">
            <summary>
            The X coordinate is specified as a fraction of the <see cref="P:ZedGraph.Chart.Rect"/>,
            and the Y coordinate is specified as a fraction of the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
            <remarks>
            For the X coordinate, 0.0
            is at the left edge of the ChartRect and 1.0
            is at the right edge of the ChartRect. A value less
            than zero is left of the ChartRect and a value
            greater than 1.0 is right of the ChartRect.  For the Y coordinate, a value of zero is at
            the left side of the pane, and a value of 1.0 is at the right side of the pane.
            </remarks>
        </member>
        <member name="F:ZedGraph.CoordType.XPaneFractionYChartFraction">
            <summary>
            The X coordinate is specified as a fraction of the <see cref="P:ZedGraph.PaneBase.Rect"/>,
            and the Y coordinate is specified as a fraction of the <see cref="P:ZedGraph.Chart.Rect"/>.
            </summary>
            <remarks>
            For the X coordinate, a value of zero is at
            the left side of the pane, and a value of 1.0 is at the right side of the pane.
            For the Y coordinate, 0.0
            is at the top edge of the ChartRect and 1.0
            is at the bottom edge of the ChartRect. A value less
            than zero is above the ChartRect and a value
            greater than 1.0 is below the ChartRect.
            </remarks>
        </member>
        <member name="F:ZedGraph.CoordType.XScaleYChartFraction">
            <summary>
            The X coordinate is specified as an X Scale value, and the Y coordinate
            is specified as a fraction of the <see cref="P:ZedGraph.Chart.Rect"/>.
            </summary>
            <remarks>
            For the X coordinate, the value just corresponds to the values of the X scale.
            Values outside the scale range will be
            outside the <see cref="P:ZedGraph.Chart.Rect"/>.  For the Y coordinate, 0.0
            is at the top edge of the ChartRect and 1.0
            is at the bottom edge of the ChartRect. A value less
            than zero is above the ChartRect and a value
            greater than 1.0 is below the ChartRect.
            </remarks>
        </member>
        <member name="F:ZedGraph.CoordType.XChartFractionYScale">
            <summary>
            The X coordinate is specified as a fraction of the
            <see cref="P:ZedGraph.Chart.Rect"/> and the Y coordinate is specified as
            a Y scale value.
            </summary>
            <remarks>
            For the X coordinate, 0.0
            is at the left edge of the ChartRect and 1.0
            is at the right edge of the ChartRect. A value less
            than zero is left of the ChartRect and a value
            greater than 1.0 is right of the ChartRect.  For the Y coordinate, the value just
            corresponds to the values of the Y scale.  Values outside the scale range will be
            outside the <see cref="P:ZedGraph.Chart.Rect"/>.
            </remarks>
        </member>
        <member name="F:ZedGraph.CoordType.XChartFractionY2Scale">
            <summary>
            The X coordinate is specified as a fraction of the
            <see cref="P:ZedGraph.Chart.Rect"/> and the Y coordinate is specified as
            a Y2 scale value.
            </summary>
            <remarks>
            For the X coordinate, 0.0
            is at the left edge of the ChartRect and 1.0
            is at the right edge of the ChartRect. A value less
            than zero is left of the ChartRect and a value
            greater than 1.0 is right of the ChartRect.  For the Y coordinate, the value just
            corresponds to the values of the Y2 scale.  Values outside the scale range will be
            outside the <see cref="P:ZedGraph.Chart.Rect"/>.
            </remarks>
        </member>
        <member name="T:ZedGraph.StepType">
            <summary>
            Enumeration type that defines how a curve is drawn.  Curves can be drawn
            as ordinary lines by connecting the points directly, or in a stair-step
            fashion as a series of discrete, constant values.  In a stair step plot,
            all lines segments are either horizontal or vertical.  In a non-step (line)
            plot, the lines can be any angle.
            </summary>
            <seealso cref="P:ZedGraph.Line.StepType"/>
        </member>
        <member name="F:ZedGraph.StepType.ForwardStep">
            <summary>
            Draw the <see cref="T:ZedGraph.CurveItem"/> as a stair-step in which each
            point defines the
            beginning (left side) of a new stair.  This implies the points are
            defined at the beginning of an "event."
            </summary>
        </member>
        <member name="F:ZedGraph.StepType.RearwardStep">
            <summary>
            Draw the <see cref="T:ZedGraph.CurveItem"/> as a stair-step in which each
            point defines the end (right side) of a new stair.  This implies
            the points are defined at the end of an "event."
            </summary>
        </member>
        <member name="F:ZedGraph.StepType.NonStep">
            <summary>
            Draw the <see cref="T:ZedGraph.CurveItem"/> as an ordinary line, in which the
            points are connected directly by line segments.
            </summary>
        </member>
        <member name="T:ZedGraph.BarBase">
            <summary>
            Enumeration type that defines the base axis from which <see cref="T:ZedGraph.Bar"/> graphs
            are displayed. The bars can be drawn on any of the three axes (<see cref="T:ZedGraph.XAxis"/>,
            <see cref="T:ZedGraph.YAxis"/>, and <see cref="T:ZedGraph.Y2Axis"/>).
            </summary>
            <seealso cref="P:ZedGraph.BarSettings.Base"/>
        </member>
        <member name="F:ZedGraph.BarBase.X">
            <summary>
            Draw the <see cref="T:ZedGraph.Bar"/> chart based from the <see cref="T:ZedGraph.XAxis"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.BarBase.Y">
            <summary>
            Draw the <see cref="T:ZedGraph.Bar"/> chart based from the <see cref="T:ZedGraph.YAxis"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.BarBase.Y2">
            <summary>
            Draw the <see cref="T:ZedGraph.Bar"/> chart based from the <see cref="T:ZedGraph.Y2Axis"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.LineType">
            <summary>
            Enumeration type that defines the available types of <see cref="T:ZedGraph.LineItem"/> graphs.
            </summary>
            <seealso cref="P:ZedGraph.GraphPane.LineType"/>
        </member>
        <member name="F:ZedGraph.LineType.Normal">
            <summary>
            Draw the lines as normal.  Any fill area goes from each line down to the X Axis.
            </summary>
        </member>
        <member name="F:ZedGraph.LineType.Stack">
            <summary>
            Draw the lines stacked on top of each other, accumulating values to a total value.
            </summary>
        </member>
        <member name="T:ZedGraph.BarType">
            <summary>
            Enumeration type that defines the available types of <see cref="T:ZedGraph.BarItem"/> graphs.
            </summary>
            <seealso cref="P:ZedGraph.BarSettings.Type"/>
        </member>
        <member name="F:ZedGraph.BarType.Cluster">
            <summary>
            Draw each <see cref="T:ZedGraph.BarItem"/> side by side in clusters.
            </summary>
        </member>
        <member name="F:ZedGraph.BarType.ClusterHiLow">
            <summary>
            Draw each <see cref="T:ZedGraph.BarItem"/> side by side in clusters, also use the "Z" value from the
            <see cref="T:ZedGraph.IPointList"/> to define the bottom of each bar.  This is very similar to
            a <see cref="T:ZedGraph.HiLowBarItem"/>, except that multiple bars will be automatically clustered, and
            the bar width is defined according to available space rather than as a fixed width setting.
            </summary>
        </member>
        <member name="F:ZedGraph.BarType.Overlay">
            <summary>
            Draw the <see cref="T:ZedGraph.BarItem"/> bars one on top of the other.  The bars will
            be drawn such that the last bar in the <see cref="T:ZedGraph.CurveList"/> will be behind
            all other bars.  Note that the bar values are not summed up for the overlay
            mode.  The data values must be summed before being passed
            to <see cref="M:ZedGraph.GraphPane.AddBar(System.String,ZedGraph.IPointList,System.Drawing.Color)"/>.
            For example, if the first bar of
            the first <see cref="T:ZedGraph.BarItem"/> has a value of 100, and the first bar of
            the second <see cref="T:ZedGraph.BarItem"/> has a value of 120, then that bar will
            appear to be 20 units on top of the first bar.
            </summary>
        </member>
        <member name="F:ZedGraph.BarType.SortedOverlay">
            <summary>
            Draw the <see cref="T:ZedGraph.BarItem"/> bars one on top of the other.  The bars will
            be drawn such that the bars are sorted according to the maximum value, with
            the tallest bar at each point at the back and the shortest bar at the front.
            This is similar to the <see cref="F:ZedGraph.BarType.Overlay"/> mode, but the bars are sorted at
            each base value.
            The data values must be summed before being passed
            to <see cref="M:ZedGraph.GraphPane.AddBar(System.String,ZedGraph.IPointList,System.Drawing.Color)"/>.  For example, if the first bar of
            the first <see cref="T:ZedGraph.BarItem"/> has a value of 100, and the first bar of
            the second <see cref="T:ZedGraph.BarItem"/> has a value of 120, then that bar will
            appear to be 20 units on top of the first bar.
            </summary>
        </member>
        <member name="F:ZedGraph.BarType.Stack">
            <summary>
            Draw the <see cref="T:ZedGraph.BarItem"/> bars in an additive format so that they stack on
            top of one another.  The value of the last bar drawn will be the sum of the values
            of all prior bars.
            </summary>
        </member>
        <member name="F:ZedGraph.BarType.PercentStack">
             <summary>
             Draw the <see cref="T:ZedGraph.BarItem"/> bars in a format whereby the height of each
             represents the percentage of the total each one represents.  Negative values
            are displayed below the zero line as percentages of the absolute total of all values. 
             </summary>
        </member>
        <member name="T:ZedGraph.SortType">
            <summary>
            Enumeration type that defines which set of data points - X or Y - is used  
            <seealso cref="M:System.Collections.ArrayList.Sort"/> to perform the sort.
            </summary>
        </member>
        <member name="F:ZedGraph.SortType.YValues">
            <summary>
            Use the Y values to sort the list.
            </summary>
        </member>
        <member name="F:ZedGraph.SortType.XValues">
            <summary>
            Use the X values to sort the list.
            </summary>
        </member>
        <member name="T:ZedGraph.ZOrder">
            <summary>
            Enumeration that specifies a Z-Order position for <see cref="T:ZedGraph.GraphObj"/>
            objects.
            </summary>
            <remarks>This enumeration allows you to set the layering of various graph
            features.  Except for the <see cref="T:ZedGraph.GraphObj"/> objects, other feature types
            all have a fixed depth as follows (front to back):
            <list>
            <see cref="T:ZedGraph.Legend"/> objects
            The border around <see cref="P:ZedGraph.Chart.Rect"/>
            <see cref="T:ZedGraph.CurveItem"/> objects
            The <see cref="T:ZedGraph.Axis"/> features
            The background fill of the <see cref="P:ZedGraph.Chart.Rect"/>
            The pane <see cref="P:ZedGraph.PaneBase.Title"/>
            The background fill of the <see cref="P:ZedGraph.PaneBase.Rect"/>
            </list>
            You cannot place anything behind the <see cref="P:ZedGraph.PaneBase.Rect"/>
            background fill, but <see cref="P:ZedGraph.GraphObj.ZOrder"/> allows you to
            explicitly control the depth of <see cref="T:ZedGraph.GraphObj"/> objects
            between all other object types.  For items of equal <see cref="T:ZedGraph.ZOrder"/>,
            such as multiple <see cref="T:ZedGraph.CurveItem"/>'s or <see cref="T:ZedGraph.GraphObj"/>'s
            having the same <see cref="T:ZedGraph.ZOrder"/> value, the relative depth is
            controlled by the ordinal position in the list (either
            <see cref="T:ZedGraph.CurveList"/> or <see cref="T:ZedGraph.GraphObjList"/>).
            <see cref="T:ZedGraph.GraphObj"/> objects
            can be placed in the <see cref="T:ZedGraph.GraphObjList"/> of either a
            <see cref="T:ZedGraph.GraphPane"/> or a <see cref="T:ZedGraph.MasterPane"/>.  For a
            <see cref="T:ZedGraph.GraphPane"/>-based <see cref="T:ZedGraph.GraphObj"/>, all <see cref="T:ZedGraph.ZOrder"/>
            values are applicable.  For a <see cref="T:ZedGraph.MasterPane"/>-based
            <see cref="T:ZedGraph.GraphObj"/>, any <see cref="T:ZedGraph.ZOrder"/> value can be used, but there
            are really only three depths:
            <list><see cref="F:ZedGraph.ZOrder.G_BehindAll"/> will place the item behind the pane title,
            <see cref="F:ZedGraph.ZOrder.A_InFront"/> will place on top of all other graph features,
            any other value places the object above the pane title, but behind the <see cref="T:ZedGraph.GraphPane"/>'s.
            </list>
            </remarks>
        </member>
        <member name="F:ZedGraph.ZOrder.G_BehindAll">
            <summary>
            Specifies that the <see cref="T:ZedGraph.GraphObj"/> will be behind all other
            objects (including the <see cref="T:ZedGraph.PaneBase"/> <see cref="P:ZedGraph.PaneBase.Title"/>).
            </summary>
        </member>
        <member name="F:ZedGraph.ZOrder.F_BehindChartFill">
            <summary>
            Specifies that the <see cref="T:ZedGraph.GraphObj"/> will be behind the
            <see cref="P:ZedGraph.Chart.Rect"/> background <see cref="T:ZedGraph.Fill"/>
            (see <see cref="P:ZedGraph.Chart.Fill"/>).
            </summary>
        </member>
        <member name="F:ZedGraph.ZOrder.E_BehindCurves">
            <summary>
            Specifies that the <see cref="T:ZedGraph.GraphObj"/> will be behind the
            <see cref="T:ZedGraph.CurveItem"/> objects.
            </summary>
        </member>
        <member name="F:ZedGraph.ZOrder.D_BehindAxis">
            <summary>
            Specifies that the <see cref="T:ZedGraph.GraphObj"/> will be behind the
            <see cref="T:ZedGraph.Axis"/> objects.
            </summary>
        </member>
        <member name="F:ZedGraph.ZOrder.C_BehindChartBorder">
            <summary>
            Specifies that the <see cref="T:ZedGraph.GraphObj"/> will be behind the
            <see cref="T:ZedGraph.Chart"/> border.
            </summary>
        </member>
        <member name="F:ZedGraph.ZOrder.B_BehindLegend">
            <summary>
            Specifies that the <see cref="T:ZedGraph.GraphObj"/> will be behind the
            <see cref="T:ZedGraph.Legend"/> object.
            </summary>
        </member>
        <member name="F:ZedGraph.ZOrder.A_InFront">
            <summary>
            Specifies that the <see cref="T:ZedGraph.GraphObj"/> will be in front of
            all other objects, except for the other <see cref="T:ZedGraph.GraphObj"/>
            objects that have the same <see cref="T:ZedGraph.ZOrder"/> and are before
            this object in the <see cref="T:ZedGraph.GraphObjList"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.PieLabelType">
            <summary>
            Enumeration that determines the type of label that is displayed for each pie slice
            (see <see cref="P:ZedGraph.PieItem.LabelType"/>).
            </summary>
        </member>
        <member name="F:ZedGraph.PieLabelType.Name_Value">
            <summary>
            Displays <see cref="P:ZedGraph.CurveItem.Label"/> and <see cref="P:ZedGraph.PieItem.Value"/> for
            a slice in a Pie Chart.
            </summary>
        </member>
        <member name="F:ZedGraph.PieLabelType.Name_Percent">
            <summary>
            Displays <see cref="P:ZedGraph.CurveItem.Label"/> and <see cref="P:ZedGraph.PieItem.Value"/> (as % of total) for
            a slice in a Pie Chart.
            </summary>
        </member>
        <member name="F:ZedGraph.PieLabelType.Name_Value_Percent">
            <summary>
            Displays a <see cref="P:ZedGraph.CurveItem.Label"/> containing the <see cref="P:ZedGraph.PieItem.Value"/> both  
            as an absolute number and as percentage of the total.
            </summary>
        </member>
        <member name="F:ZedGraph.PieLabelType.Value">
            <summary>
            Displays <see cref="P:ZedGraph.PieItem.Value"/> for
            a slice in a Pie Chart.
            </summary>
        </member>
        <member name="F:ZedGraph.PieLabelType.Percent">
            <summary>
            Displays <see cref="P:ZedGraph.PieItem.Value"/> (as % of total) for
            a slice in a Pie Chart.
            </summary>
        </member>
        <member name="F:ZedGraph.PieLabelType.Name">
            <summary>
            Displays <see cref="P:ZedGraph.CurveItem.Label"/> for a slice in a Pie Chart.
            </summary>
        </member>
        <member name="F:ZedGraph.PieLabelType.None">
             <summary>
            No label displayed. 
             </summary>
        </member>
        <member name="T:ZedGraph.PaneLayout">
            <summary>
            Define the auto layout options for the
            <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/> method.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayout.ForceSquare">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s so they are in a square grid (always 2x2, 3x3, 4x4),
            leaving blank spaces as required.
            </summary>
            <remarks>For example, a single pane would generate a 1x1 grid, between 2 and 4 panes would generate
            a 2x2 grid, 5 to 9 panes would generate a 3x3 grid.</remarks>
        </member>
        <member name="F:ZedGraph.PaneLayout.SquareColPreferred">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s so they are in a general square (2x2, 3x3, etc.), but use extra
            columns when necessary (row x column = 1x2, 2x3, 3x4, etc.) depending on the total number
            of panes required.
            </summary>
            <remarks>For example, a 2x2 grid has four panes and a 3x3 grid has 9 panes.  If there are
            6 panes required, then this option will eliminate a row (column preferred) to make a
            2 row x 3 column grid.  With 7 panes, it will make a 3x3 grid with 2 empty spaces.</remarks>
        </member>
        <member name="F:ZedGraph.PaneLayout.SquareRowPreferred">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s so they are in a general square (2x2, 3x3, etc.), but use extra
            rows when necessary (2x1, 3x2, 4x3, etc.) depending on the total number of panes required.
            </summary>
            <remarks>For example, a 2x2 grid has four panes and a 3x3 grid has 9 panes.  If there are
            6 panes required, then this option will eliminate a column (row preferred) to make a
            3 row x 2 column grid.  With 7 panes, it will make a 3x3 grid with 2 empty spaces.</remarks>
        </member>
        <member name="F:ZedGraph.PaneLayout.SingleRow">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s in a single row
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayout.SingleColumn">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s in a single column
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayout.ExplicitCol12">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s with an explicit number of columns: The first row has
            1 column and the second row has 2 columns for a total of 3 panes.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayout.ExplicitCol21">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s with an explicit number of columns: The first row has
            2 columns and the second row has 1 column for a total of 3 panes.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayout.ExplicitCol23">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s with an explicit number of columns: The first row has
            2 columns and the second row has 3 columns for a total of 5 panes.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayout.ExplicitCol32">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s with an explicit number of columns: The first row has
            3 columns and the second row has 2 columns for a total of 5 panes.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayout.ExplicitRow12">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s with an explicit number of rows: The first column has
            1 row and the second column has 2 rows for a total of 3 panes.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayout.ExplicitRow21">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s with an explicit number of rows: The first column has
            2 rows and the second column has 1 row for a total of 3 panes.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayout.ExplicitRow23">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s with an explicit number of rows: The first column has
            2 rows and the second column has 3 rows for a total of 5 panes.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayout.ExplicitRow32">
            <summary>
            Layout the <see cref="T:ZedGraph.GraphPane"/>'s with an explicit number of rows: The first column has
            3 rows and the second column has 2 rows for a total of 5 panes.
            </summary>
        </member>
        <member name="T:ZedGraph.RenderModeType">
            <summary>
            Enum for specifying the type of data to be returned by the ZedGraphWeb Render() method.
            </summary>
        </member>
        <member name="F:ZedGraph.RenderModeType.ImageTag">
            <summary>
            Renders as an IMG tag referencing a local generated image. ContentType stays text.
            </summary>
        </member>
        <member name="F:ZedGraph.RenderModeType.RawImage">
            <summary>
            Renders the binary image. ContentType is changed accordingly.
            </summary>
        </member>
        <member name="T:ZedGraph.ScaleState">
            <summary>
            A class that captures an <see cref="T:ZedGraph.Axis"/> scale range.
            </summary>
            <remarks>This structure is used by the <see cref="T:ZedGraph.ZoomState"/> class to store
            <see cref="T:ZedGraph.Axis"/> scale range settings in a collection for later retrieval.
            The class stores the <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>,
            <see cref="P:ZedGraph.Scale.MinorStep"/>, and <see cref="P:ZedGraph.Scale.MajorStep"/> properties, along with
            the corresponding auto-scale settings: <see cref="P:ZedGraph.Scale.MinAuto"/>,
            <see cref="P:ZedGraph.Scale.MaxAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/>.</remarks>
            <author> John Champion </author>
            <version> $Revision: 3.2 $ $Date: 2007/02/19 08:05:24 $ </version>
        </member>
        <member name="F:ZedGraph.ScaleState._min">
            <summary>
            The axis range data for <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>,
            <see cref="P:ZedGraph.Scale.MinorStep"/>, and <see cref="P:ZedGraph.Scale.MajorStep"/>
            </summary>
        </member>
        <member name="F:ZedGraph.ScaleState._minorStep">
            <summary>
            The axis range data for <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>,
            <see cref="P:ZedGraph.Scale.MinorStep"/>, and <see cref="P:ZedGraph.Scale.MajorStep"/>
            </summary>
        </member>
        <member name="F:ZedGraph.ScaleState._majorStep">
            <summary>
            The axis range data for <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>,
            <see cref="P:ZedGraph.Scale.MinorStep"/>, and <see cref="P:ZedGraph.Scale.MajorStep"/>
            </summary>
        </member>
        <member name="F:ZedGraph.ScaleState._max">
            <summary>
            The axis range data for <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>,
            <see cref="P:ZedGraph.Scale.MinorStep"/>, and <see cref="P:ZedGraph.Scale.MajorStep"/>
            </summary>
        </member>
        <member name="F:ZedGraph.ScaleState._minAuto">
            <summary>
            The status of <see cref="P:ZedGraph.Scale.MinAuto"/>,
            <see cref="P:ZedGraph.Scale.MaxAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/>
            </summary>
        </member>
        <member name="F:ZedGraph.ScaleState._minorStepAuto">
            <summary>
            The status of <see cref="P:ZedGraph.Scale.MinAuto"/>,
            <see cref="P:ZedGraph.Scale.MaxAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/>
            </summary>
        </member>
        <member name="F:ZedGraph.ScaleState._majorStepAuto">
            <summary>
            The status of <see cref="P:ZedGraph.Scale.MinAuto"/>,
            <see cref="P:ZedGraph.Scale.MaxAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/>
            </summary>
        </member>
        <member name="F:ZedGraph.ScaleState._maxAuto">
            <summary>
            The status of <see cref="P:ZedGraph.Scale.MinAuto"/>,
            <see cref="P:ZedGraph.Scale.MaxAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/>
            </summary>
        </member>
        <member name="F:ZedGraph.ScaleState._formatAuto">
            <summary>
            The status of <see cref="P:ZedGraph.Scale.MinAuto"/>,
            <see cref="P:ZedGraph.Scale.MaxAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/>
            </summary>
        </member>
        <member name="F:ZedGraph.ScaleState._magAuto">
            <summary>
            The status of <see cref="P:ZedGraph.Scale.MinAuto"/>,
            <see cref="P:ZedGraph.Scale.MaxAuto"/>, <see cref="P:ZedGraph.Scale.MinorStepAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/>
            </summary>
        </member>
        <member name="F:ZedGraph.ScaleState._minorUnit">
            <summary>
            The status of <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/>
            </summary>
        </member>
        <member name="F:ZedGraph.ScaleState._majorUnit">
            <summary>
            The status of <see cref="P:ZedGraph.Scale.MajorUnit"/> and <see cref="P:ZedGraph.Scale.MinorUnit"/>
            </summary>
        </member>
        <member name="M:ZedGraph.ScaleState.#ctor(ZedGraph.Axis)">
            <summary>
            Construct a <see cref="T:ZedGraph.ScaleState"/> from the specified <see cref="T:ZedGraph.Axis"/>
            </summary>
            <param name="axis">The <see cref="T:ZedGraph.Axis"/> from which to collect the scale
            range settings.</param>
        </member>
        <member name="M:ZedGraph.ScaleState.#ctor(ZedGraph.ScaleState)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.ScaleState"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.ScaleState.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.ScaleState.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.ScaleState.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.ScaleState.ApplyScale(ZedGraph.Axis)">
            <summary>
            Copy the properties from this <see cref="T:ZedGraph.ScaleState"/> out to the specified <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="axis">The <see cref="T:ZedGraph.Axis"/> reference to which the properties should be
            copied</param>
        </member>
        <member name="M:ZedGraph.ScaleState.IsChanged(ZedGraph.Axis)">
            <summary>
            Determine if the state contained in this <see cref="T:ZedGraph.ScaleState"/> object is different from
            the state of the specified <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="axis">The <see cref="T:ZedGraph.Axis"/> object with which to compare states.</param>
            <returns>true if the states are different, false otherwise</returns>
        </member>
        <member name="T:ZedGraph.RollingPointPairList">
             <summary>
             A class that provides a rolling list of <see cref="T:ZedGraph.PointPair"/> objects.
             This is essentially a 
             first-in-first-out (FIFO) queue with a fixed capacity which allows 'rolling' 
             (or oscilloscope like) graphs to be be animated without having the overhead of an
             ever-growing ArrayList.
             
             The queue is constructed with a fixed capacity and new points can be enqueued. When the 
             capacity is reached the oldest (first in) PointPair is overwritten. However, when 
             accessing via <see cref="T:ZedGraph.IPointList"/>, the <see cref="T:ZedGraph.PointPair"/> objects are
             seen in the order in which they were enqeued.
            
             RollingPointPairList supports data editing through the <see cref="T:ZedGraph.IPointListEdit"/>
             interface.
             
             <author>Colin Green with mods by John Champion</author>
             <version> $Date: 2007/02/18 05:51:54 $ </version>
             </summary>
        </member>
        <member name="F:ZedGraph.RollingPointPairList.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.RollingPointPairList._mBuffer">
            <summary>
            An array of PointPair objects that acts as the underlying buffer.
            </summary>
        </member>
        <member name="F:ZedGraph.RollingPointPairList._headIdx">
            <summary>
            The index of the previously enqueued item. -1 if buffer is empty.
            </summary>
        </member>
        <member name="F:ZedGraph.RollingPointPairList._tailIdx">
            <summary>
            The index of the next item to be dequeued. -1 if buffer is empty.
            </summary>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.#ctor(System.Int32)">
            <summary>
            Constructs an empty buffer with the specified capacity.
            </summary>
            <param name="capacity">Number of elements in the rolling list.  This number
            cannot be changed once the RollingPointPairList is constructed.</param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.#ctor(System.Int32,System.Boolean)">
            <summary>
            Constructs an empty buffer with the specified capacity.  Pre-allocates space
            for all PointPair's in the list if <paramref name="preLoad"/> is true.
            </summary>
            <param name="capacity">Number of elements in the rolling list.  This number
            cannot be changed once the RollingPointPairList is constructed.</param>
            <param name="preLoad">true to pre-allocate all PointPair instances in
            the list, false otherwise.  Note that in order to be memory efficient,
            the <see cref="M:ZedGraph.RollingPointPairList.Add(System.Double,System.Double,System.Double)"/> method should be used to add
            data.  Avoid the <see cref="M:ZedGraph.RollingPointPairList.Add(ZedGraph.PointPair)"/> method.
            </param>
            <seealso cref="M:ZedGraph.RollingPointPairList.Add(System.Double,System.Double,System.Double)"/>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.#ctor(ZedGraph.IPointList)">
            <summary>
            Constructs a buffer with a copy of the items within the provided
            <see cref="T:ZedGraph.IPointList"/>.
            The <see cref="P:ZedGraph.RollingPointPairList.Capacity"/> is set to the length of the provided list.
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.IPointList"/> to be copied.</param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.RollingPointPairList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Clear">
            <summary>
            Clear the buffer of all <see cref="T:ZedGraph.PointPair"/> objects.
            Note that the <see cref="P:ZedGraph.RollingPointPairList.Capacity"/> remains unchanged.
            </summary>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.GetNextIndex">
            <summary>
            Calculate that the next index in the buffer that should receive a new data point.
            Note that this method actually advances the buffer, so a datapoint should be
            added at _mBuffer[_headIdx].
            </summary>
            <returns>The index position of the new head element</returns>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Add(ZedGraph.PointPair)">
            <summary>
            Add a <see cref="T:ZedGraph.PointPair"/> onto the head of the queue,
            overwriting old values if the buffer is full.
            </summary>
            <param name="item">The <see cref="T:ZedGraph.PointPair"/> to be added.</param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Add(ZedGraph.IPointList)">
            <summary>
            Add an <see cref="T:ZedGraph.IPointList"/> object to the head of the queue.
            </summary>
            <param name="pointList">A reference to the <see cref="T:ZedGraph.IPointList"/> object to
            be added</param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Remove">
            <summary>
            Remove an old item from the tail of the queue.
            </summary>
            <returns>The removed item. Throws an <see cref="T:System.InvalidOperationException"/>
            if the buffer was empty. 
            Check the buffer's length (<see cref="P:ZedGraph.RollingPointPairList.Count"/>) or the <see cref="P:ZedGraph.RollingPointPairList.IsEmpty"/>
            property to avoid exceptions.</returns>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.RemoveAt(System.Int32)">
            <summary>
            Remove the <see cref="T:ZedGraph.PointPair"/> at the specified index
            </summary>
            <remarks>
            All items in the queue that lie after <paramref name="index"/> will
            be shifted back by one, and the queue will be one item shorter.
            </remarks>
            <param name="index">The ordinal position of the item to be removed.
            Throws an <see cref="T:System.ArgumentOutOfRangeException"/> if index is less than
            zero or greater than or equal to <see cref="P:ZedGraph.RollingPointPairList.Count"/>
            </param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Pop">
            <summary>
            Pop an item off the head of the queue.
            </summary>
            <returns>The popped item. Throws an exception if the buffer was empty.</returns>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Peek">
            <summary>
            Peek at the <see cref="T:ZedGraph.PointPair"/> item at the head of the queue.
            </summary>
            <returns>The <see cref="T:ZedGraph.PointPair"/> item at the head of the queue.
            Throws an <see cref="T:System.InvalidOperationException"/> if the buffer was empty.
            </returns>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Add(System.Double,System.Double,System.Double,System.Object)">
            <summary>
            Add a set of values onto the head of the queue,
            overwriting old values if the buffer is full.
            </summary>
            <remarks>
            This method is much more efficient that the <see cref="M:ZedGraph.RollingPointPairList.Add(ZedGraph.PointPair)">Add(PointPair)</see>
            method, since it does not require that a new PointPair instance be provided.
            If the buffer already contains a <see cref="T:ZedGraph.PointPair"/> at the head position,
            then the x, y, z, and tag values will be copied into the existing PointPair.
            Otherwise, a new PointPair instance must be created.
            In this way, each PointPair position in the rolling list will only be allocated one time.
            To truly be memory efficient, the <see cref="M:ZedGraph.RollingPointPairList.Remove"/>, <see cref="M:ZedGraph.RollingPointPairList.RemoveAt(System.Int32)"/>,
            and <see cref="M:ZedGraph.RollingPointPairList.Pop"/> methods should be avoided.  Also, the <paramref name="tag"/> property
            for this method should be null, since it is a reference type.
            </remarks>
            <param name="x">The X value</param>
            <param name="y">The Y value</param>
            <param name="z">The Z value</param>
            <param name="tag">The Tag value for the PointPair</param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Add(System.Double,System.Double)">
            <summary>
            Add a set of values onto the head of the queue,
            overwriting old values if the buffer is full.
            </summary>
            <remarks>
            This method is much more efficient that the <see cref="M:ZedGraph.RollingPointPairList.Add(ZedGraph.PointPair)">Add(PointPair)</see>
            method, since it does not require that a new PointPair instance be provided.
            If the buffer already contains a <see cref="T:ZedGraph.PointPair"/> at the head position,
            then the x, y, z, and tag values will be copied into the existing PointPair.
            Otherwise, a new PointPair instance must be created.
            In this way, each PointPair position in the rolling list will only be allocated one time.
            To truly be memory efficient, the <see cref="M:ZedGraph.RollingPointPairList.Remove"/>, <see cref="M:ZedGraph.RollingPointPairList.RemoveAt(System.Int32)"/>,
            and <see cref="M:ZedGraph.RollingPointPairList.Pop"/> methods should be avoided.
            </remarks>
            <param name="x">The X value</param>
            <param name="y">The Y value</param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Add(System.Double,System.Double,System.Object)">
            <summary>
            Add a set of values onto the head of the queue,
            overwriting old values if the buffer is full.
            </summary>
            <remarks>
            This method is much more efficient that the <see cref="M:ZedGraph.RollingPointPairList.Add(ZedGraph.PointPair)">Add(PointPair)</see>
            method, since it does not require that a new PointPair instance be provided.
            If the buffer already contains a <see cref="T:ZedGraph.PointPair"/> at the head position,
            then the x, y, z, and tag values will be copied into the existing PointPair.
            Otherwise, a new PointPair instance must be created.
            In this way, each PointPair position in the rolling list will only be allocated one time.
            To truly be memory efficient, the <see cref="M:ZedGraph.RollingPointPairList.Remove"/>, <see cref="M:ZedGraph.RollingPointPairList.RemoveAt(System.Int32)"/>,
            and <see cref="M:ZedGraph.RollingPointPairList.Pop"/> methods should be avoided.  Also, the <paramref name="tag"/> property
            for this method should be null, since it is a reference type.
            </remarks>
            <param name="x">The X value</param>
            <param name="y">The Y value</param>
            <param name="tag">The Tag value for the PointPair</param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Add(System.Double,System.Double,System.Double)">
            <summary>
            Add a set of values onto the head of the queue,
            overwriting old values if the buffer is full.
            </summary>
            <remarks>
            This method is much more efficient that the <see cref="M:ZedGraph.RollingPointPairList.Add(ZedGraph.PointPair)">Add(PointPair)</see>
            method, since it does not require that a new PointPair instance be provided.
            If the buffer already contains a <see cref="T:ZedGraph.PointPair"/> at the head position,
            then the x, y, z, and tag values will be copied into the existing PointPair.
            Otherwise, a new PointPair instance must be created.
            In this way, each PointPair position in the rolling list will only be allocated one time.
            To truly be memory efficient, the <see cref="M:ZedGraph.RollingPointPairList.Remove"/>, <see cref="M:ZedGraph.RollingPointPairList.RemoveAt(System.Int32)"/>,
            and <see cref="M:ZedGraph.RollingPointPairList.Pop"/> methods should be avoided.
            </remarks>
            <param name="x">The X value</param>
            <param name="y">The Y value</param>
            <param name="z">The Z value</param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Add(System.Double[],System.Double[])">
            <summary>
            Add a set of points to the <see cref="T:ZedGraph.RollingPointPairList"/>
            from two arrays of type double.
            If either array is null, then a set of ordinal values is automatically
            generated in its place (see <see cref="F:ZedGraph.AxisType.Ordinal"/>).
            If the arrays are of different size, then the larger array prevails and the
            smaller array is padded with <see cref="F:ZedGraph.PointPairBase.Missing"/> values.
            </summary>
            <param name="x">A double[] array of X values</param>
            <param name="y">A double[] array of Y values</param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.Add(System.Double[],System.Double[],System.Double[])">
            <summary>
            Add a set of points to the <see cref="T:ZedGraph.RollingPointPairList"/> from
            three arrays of type double.
            If the X or Y array is null, then a set of ordinal values is automatically
            generated in its place (see <see cref="F:ZedGraph.AxisType.Ordinal"/>.
            If the <see paramref="z"/> value
            is null, then it is set to zero.
            If the arrays are of different size, then the larger array prevails and the
            smaller array is padded with <see cref="F:ZedGraph.PointPairBase.Missing"/> values.
            </summary>
            <param name="x">A double[] array of X values</param>
            <param name="y">A double[] array of Y values</param>
            <param name="z">A double[] array of Z values</param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.RollingPointPairList.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.RollingPointPairList.Capacity">
            <summary>
            Gets the capacity of the rolling buffer.
            </summary>
        </member>
        <member name="P:ZedGraph.RollingPointPairList.Count">
            <summary>
            Gets the count of items within the rolling buffer. Note that this may be less than
            the capacity.
            </summary>
        </member>
        <member name="P:ZedGraph.RollingPointPairList.IsEmpty">
            <summary>
            Gets a bolean that indicates if the buffer is empty.
            Alternatively you can test Count==0.
            </summary>
        </member>
        <member name="P:ZedGraph.RollingPointPairList.Item(System.Int32)">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.PointPair"/> at the specified index in the buffer.
            </summary>
            <remarks>
            Index must be within the current size of the buffer, e.g., the set
            method will not expand the buffer even if <see cref="P:ZedGraph.RollingPointPairList.Capacity"/> is available
            </remarks>
        </member>
        <member name="T:ZedGraph.MajorTic">
            <summary>
            Class that holds the specific properties for the major tics.  Inherits from
            <see cref="T:ZedGraph.MinorTic"/>.
            </summary>
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="T:ZedGraph.MinorTic">
            <summary>
            Class that holds the specific properties for the minor tics.
            </summary>
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="F:ZedGraph.MinorTic.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.MinorTic.#ctor">
            <summary>
            Default Constructor
            </summary>
        </member>
        <member name="M:ZedGraph.MinorTic.#ctor(ZedGraph.MinorTic)">
            <summary>
            Copy constructor.
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.MinorTic"/> that is to be copied.</param>
        </member>
        <member name="M:ZedGraph.MinorTic.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.MinorTic.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.MinorTic.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.MinorTic.ScaledTic(System.Single)">
            <summary>
            Calculate the scaled tic size for this <see cref="T:ZedGraph.Axis"/>
            </summary>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>The scaled tic size, in points (1/72 inch)</returns>
            <seealso cref="P:ZedGraph.MinorTic.Size"/>
            <seealso cref="P:ZedGraph.Scale.FontSpec"/>
            <seealso cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
        </member>
        <member name="M:ZedGraph.MinorTic.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.MinorTic.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.MinorTic.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Draw a tic mark at the specified single position.  This includes the inner, outer,
            cross and opposite tic marks as required.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="pen">Graphic <see cref="T:System.Drawing.Pen"/> with which to draw the tic mark.</param>
            <param name="pixVal">The pixel location of the tic mark on this
            <see cref="T:ZedGraph.Axis"/></param>
            <param name="topPix">The pixel value of the top of the axis border</param>
            <param name="shift">The number of pixels to shift this axis, based on the
            value of <see cref="P:ZedGraph.Axis.Cross"/>.  A positive value is into the ChartRect relative to
            the default axis position.</param>
            <param name="scaledTic">The scaled size of a minor tic, in pixel units</param>
        </member>
        <member name="P:ZedGraph.MinorTic.Color">
            <summary>
            The color to use for drawing the tics of this class instance
            </summary>
            <value> The color is defined using the
            <see cref="T:System.Drawing.Color"/> class</value>
            <seealso cref="F:ZedGraph.MinorTic.Default.Color"/>.
            <seealso cref="P:ZedGraph.MinorTic.IsOutside"/>
            <seealso cref="P:ZedGraph.Axis.IsVisible"/>
        </member>
        <member name="P:ZedGraph.MinorTic.Size">
            <summary>
            The length of the major tic marks.
            </summary>
            <remarks>
            This length will be scaled
            according to the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> for the
            <see cref="T:ZedGraph.GraphPane"/>
            </remarks>
            <value>The tic size is measured in points (1/72 inch)</value>
            <seealso cref="F:ZedGraph.MinorTic.Default.Size"/>.
            <seealso cref="P:ZedGraph.MinorTic.IsOutside"/>
            <seealso cref="P:ZedGraph.Axis.IsVisible"/>
            <seealso cref="P:ZedGraph.MinorTic.Color"/>
        </member>
        <member name="P:ZedGraph.MinorTic.IsAllTics">
            <summary>
            This is convenience property sets the status of all the different
            tic properties in this instance to the same value.  true to activate all tics,
            false to clear all tics.
            </summary>
            <remarks>
            This setting does not persist.  That is, you can clear all the tics with
            <see cref="P:ZedGraph.MinorTic.IsAllTics"/> = false, then activate them individually (example:
            <see cref="P:ZedGraph.MinorTic.IsOutside"/> = true).
            </remarks>
            <seealso cref="P:ZedGraph.MinorTic.IsOutside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsInside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsOpposite"/>
            <seealso cref="P:ZedGraph.MinorTic.IsCrossInside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsCrossOutside"/>
        </member>
        <member name="P:ZedGraph.MinorTic.IsOutside">
            <summary>
            Gets or sets a property that determines whether or not the minor outside tic marks
            are shown.
            </summary>
            <remarks>
            These are the tic marks on the outside of the <see cref="T:ZedGraph.Axis"/> border.
            The minor tic spacing is controlled by <see cref="P:ZedGraph.Scale.MinorStep"/>.
            </remarks>
            <value>true to show the minor outside tic marks, false otherwise</value>
            <seealso cref="F:ZedGraph.MinorTic.Default.IsOutside"/>.
            <seealso cref="P:ZedGraph.MinorTic.IsOutside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsInside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsOpposite"/>
            <seealso cref="P:ZedGraph.MinorTic.IsCrossInside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsCrossOutside"/>
        </member>
        <member name="P:ZedGraph.MinorTic.IsInside">
            <summary>
            Gets or sets a property that determines whether or not the major inside tic marks
            are shown.
            </summary>
            <remarks>
            These are the tic marks on the inside of the <see cref="T:ZedGraph.Axis"/> border.
            The major tic spacing is controlled by <see cref="P:ZedGraph.Scale.MajorStep"/>.
            </remarks>
            <value>true to show the major inside tic marks, false otherwise</value>
            <seealso cref="F:ZedGraph.MinorTic.Default.IsInside"/>.
            <seealso cref="P:ZedGraph.MinorTic.IsOutside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsInside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsOpposite"/>
            <seealso cref="P:ZedGraph.MinorTic.IsCrossInside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsCrossOutside"/>
        </member>
        <member name="P:ZedGraph.MinorTic.IsOpposite">
            <summary>
            Gets or sets a property that determines whether or not the major opposite tic marks
            are shown.
            </summary>
            <remarks>
            These are the tic marks on the inside of the <see cref="T:ZedGraph.Axis"/> border on
            the opposite side from the axis.
            The major tic spacing is controlled by <see cref="P:ZedGraph.Scale.MajorStep"/>.
            </remarks>
            <value>true to show the major opposite tic marks, false otherwise</value>
            <seealso cref="F:ZedGraph.MinorTic.Default.IsOpposite"/>.
            <seealso cref="P:ZedGraph.MinorTic.IsOutside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsInside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsOpposite"/>
            <seealso cref="P:ZedGraph.MinorTic.IsCrossInside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsCrossOutside"/>
        </member>
        <member name="P:ZedGraph.MinorTic.IsCrossOutside">
            <summary>
            Gets or sets the display mode for the <see cref="T:ZedGraph.Axis"/> major outside 
            "cross" tic marks.
            </summary>
            <remarks>
            The "cross" tics are a special, additional set of tic marks that
            always appear on the actual axis, even if it has been shifted due
            to the <see cref="P:ZedGraph.Axis.Cross"/> setting.  The other tic marks are always
            fixed to the edges of the <see cref="P:ZedGraph.Chart.Rect"/>.  The cross tics
            are normally not displayed, since, if <see cref="P:ZedGraph.Axis.CrossAuto"/> is true,
            they will exactly overlay the "normal" and "inside" tics.  If
            <see cref="P:ZedGraph.Axis.CrossAuto"/> is false, then you will most likely want to
            enable the cross tics.
            The major tic spacing is controlled by <see cref="P:ZedGraph.Scale.MajorStep"/>.
            </remarks>
            <value>true to show the major cross tic marks, false otherwise</value>
        </member>
        <member name="P:ZedGraph.MinorTic.IsCrossInside">
            <summary>
            Gets or sets the display mode for the <see cref="T:ZedGraph.Axis"/> major inside 
            "cross" tic marks.
            </summary>
            <remarks>
            The "cross" tics are a special, additional set of tic marks that
            always appear on the actual axis, even if it has been shifted due
            to the <see cref="P:ZedGraph.Axis.Cross"/> setting.  The other tic marks are always
            fixed to the edges of the <see cref="P:ZedGraph.Chart.Rect"/>.  The cross tics
            are normally not displayed, since, if <see cref="P:ZedGraph.Axis.CrossAuto"/> is true,
            they will exactly overlay the "normal" and "inside" tics.  If
            <see cref="P:ZedGraph.Axis.CrossAuto"/> is false, then you will most likely want to
            enable the cross tics.
            The major tic spacing is controlled by <see cref="P:ZedGraph.Scale.MajorStep"/>.
            </remarks>
            <value>true to show the major cross tic marks, false otherwise</value>
        </member>
        <member name="P:ZedGraph.MinorTic.PenWidth">
            <summary>
            Gets or sets the pen width to be used when drawing the tic marks for
            this <see cref="T:ZedGraph.Axis"/>
            </summary>
            <value>The pen width is defined in points (1/72 inch)</value>
            <seealso cref="F:ZedGraph.MinorTic.Default.PenWidth"/>.
            <seealso cref="P:ZedGraph.MinorTic.IsOutside"/>
            <seealso cref="P:ZedGraph.MinorTic.Color"/>
        </member>
        <member name="T:ZedGraph.MinorTic.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.MinorTic"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.MinorTic.Default.Size">
            <summary>
            The default size for the <see cref="T:ZedGraph.Axis"/> minor tic marks.
            (<see cref="P:ZedGraph.MinorTic.Size"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.MinorTic.Default.PenWidth">
            <summary>
            The default pen width for drawing the <see cref="T:ZedGraph.Axis"/> tic marks.
            (<see cref="P:ZedGraph.MinorTic.PenWidth"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.MinorTic.Default.IsOutside">
            <summary>
            The display mode for the <see cref="T:ZedGraph.Axis"/> minor outside tic marks
            (<see cref="P:ZedGraph.MinorTic.IsOutside"/> property).
            The minor tic spacing is controlled by <see cref="P:ZedGraph.Scale.MinorStep"/>.
            </summary>
            <value>true to show the minor tic marks (outside the axis),
            false otherwise</value>
        </member>
        <member name="F:ZedGraph.MinorTic.Default.IsInside">
            <summary>
            The display mode for the <see cref="T:ZedGraph.Axis"/> minor inside tic marks
            (<see cref="P:ZedGraph.MinorTic.IsInside"/> property).
            The minor tic spacing is controlled by <see cref="P:ZedGraph.Scale.MinorStep"/>.
            </summary>
            <value>true to show the minor tic marks (inside the axis),
            false otherwise</value>
        </member>
        <member name="F:ZedGraph.MinorTic.Default.IsOpposite">
            <summary>
            The display mode for the <see cref="T:ZedGraph.Axis"/> minor opposite tic marks
            (<see cref="P:ZedGraph.MinorTic.IsOpposite"/> property).
            The minor tic spacing is controlled by <see cref="P:ZedGraph.Scale.MinorStep"/>.
            </summary>
            <value>true to show the minor tic marks
            (inside the axis on the opposite side),
            false otherwise</value>
        </member>
        <member name="F:ZedGraph.MinorTic.Default.IsCrossOutside">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.Axis"/> minor outside 
            "cross" tic marks (<see cref="P:ZedGraph.MinorTic.IsCrossOutside"/> property).
            </summary>
            <remarks>
            The "cross" tics are a special, additional set of tic marks that
            always appear on the actual axis, even if it has been shifted due
            to the <see cref="P:ZedGraph.Axis.Cross"/> setting.  The other tic marks are always
            fixed to the edges of the <see cref="P:ZedGraph.Chart.Rect"/>.  The cross tics
            are normally not displayed, since, if <see cref="P:ZedGraph.Axis.CrossAuto"/> is true,
            they will exactly overlay the "normal" and "inside" tics.  If
            <see cref="P:ZedGraph.Axis.CrossAuto"/> is false, then you will most likely want to
            enable the cross tics.
            The minor tic spacing is controlled by <see cref="P:ZedGraph.Scale.MinorStep"/>.
            </remarks>
            <value>true to show the major cross tic marks, false otherwise</value>
        </member>
        <member name="F:ZedGraph.MinorTic.Default.IsCrossInside">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.Axis"/> minor inside 
            "cross" tic marks (<see cref="P:ZedGraph.MinorTic.IsCrossInside"/> property).
            </summary>
            <remarks>
            The "cross" tics are a special, additional set of tic marks that
            always appear on the actual axis, even if it has been shifted due
            to the <see cref="P:ZedGraph.Axis.Cross"/> setting.  The other tic marks are always
            fixed to the edges of the <see cref="P:ZedGraph.Chart.Rect"/>.  The cross tics
            are normally not displayed, since, if <see cref="P:ZedGraph.Axis.CrossAuto"/> is true,
            they will exactly overlay the "normal" and "inside" tics.  If
            <see cref="P:ZedGraph.Axis.CrossAuto"/> is false, then you will most likely want to
            enable the cross tics.
            The major tic spacing is controlled by <see cref="P:ZedGraph.Scale.MinorStep"/>.
            </remarks>
            <value>true to show the major cross tic marks, false otherwise</value>
        </member>
        <member name="F:ZedGraph.MinorTic.Default.Color">
            <summary>
            The default color for minor tics (<see cref="P:ZedGraph.MinorTic.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.MajorTic.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.MajorTic.#ctor">
            <summary>
            Default constructor for <see cref="T:ZedGraph.MajorTic"/>.
            </summary>
        </member>
        <member name="M:ZedGraph.MajorTic.#ctor(ZedGraph.MajorTic)">
            <summary>
            Copy constructor.
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.MajorTic"/> that is to be copied.</param>
        </member>
        <member name="M:ZedGraph.MajorTic.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.MajorTic.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.MajorTic.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.MajorTic.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.MajorTic.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.MajorTic.IsBetweenLabels">
            <summary>
            Gets or sets a property that determines whether or not the major tics will be drawn
            inbetween the labels, rather than right at the labels.
            </summary>
            <remarks>
            Note that this setting is only
            applicable if <see cref="P:ZedGraph.Axis.Type"/> = <see cref="F:ZedGraph.AxisType.Text"/>.
            </remarks>
            <value>true to place the text between the labels for text axes, false otherwise</value>
            <seealso cref="P:ZedGraph.MinorTic.IsOutside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsInside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsOpposite"/>
            <seealso cref="P:ZedGraph.MinorTic.IsCrossOutside"/>
            <seealso cref="P:ZedGraph.MinorTic.IsCrossInside"/>
        </member>
        <member name="T:ZedGraph.MajorTic.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.MinorTic"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.MajorTic.Default.Size">
            <summary>
            The default size for the <see cref="T:ZedGraph.Axis"/> tic marks.
            (<see cref="P:ZedGraph.MinorTic.Size"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.MajorTic.Default.PenWidth">
            <summary>
            The default pen width for drawing the <see cref="T:ZedGraph.Axis"/> tic marks.
            (<see cref="P:ZedGraph.MinorTic.PenWidth"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.MajorTic.Default.IsOutside">
            <summary>
            The display mode for the <see cref="T:ZedGraph.Axis"/> major outside tic marks
            (<see cref="P:ZedGraph.MinorTic.IsOutside"/> property).
            The major tic spacing is controlled by <see cref="P:ZedGraph.Scale.MajorStep"/>.
            </summary>
            <value>true to show the major tic marks (outside the axis),
            false otherwise</value>
        </member>
        <member name="F:ZedGraph.MajorTic.Default.IsInside">
            <summary>
            The display mode for the <see cref="T:ZedGraph.Axis"/> major inside tic marks
            (<see cref="P:ZedGraph.MinorTic.IsInside"/> property).
            The major tic spacing is controlled by <see cref="P:ZedGraph.Scale.MajorStep"/>.
            </summary>
            <value>true to show the major tic marks (inside the axis),
            false otherwise</value>
        </member>
        <member name="F:ZedGraph.MajorTic.Default.IsOpposite">
            <summary>
            The display mode for the <see cref="T:ZedGraph.Axis"/> major opposite tic marks
            (<see cref="P:ZedGraph.MinorTic.IsOpposite"/> property).
            The major tic spacing is controlled by <see cref="P:ZedGraph.Scale.MajorStep"/>.
            </summary>
            <value>true to show the major tic marks
            (inside the axis on the opposite side),
            false otherwise</value>
        </member>
        <member name="F:ZedGraph.MajorTic.Default.IsCrossOutside">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.Axis"/> major outside 
            "cross" tic marks (<see cref="P:ZedGraph.MinorTic.IsCrossOutside"/> property).
            </summary>
            <remarks>
            The "cross" tics are a special, additional set of tic marks that
            always appear on the actual axis, even if it has been shifted due
            to the <see cref="P:ZedGraph.Axis.Cross"/> setting.  The other tic marks are always
            fixed to the edges of the <see cref="P:ZedGraph.Chart.Rect"/>.  The cross tics
            are normally not displayed, since, if <see cref="P:ZedGraph.Axis.CrossAuto"/> is true,
            they will exactly overlay the "normal" and "inside" tics.  If
            <see cref="P:ZedGraph.Axis.CrossAuto"/> is false, then you will most likely want to
            enable the cross tics.
            The major tic spacing is controlled by <see cref="P:ZedGraph.Scale.MajorStep"/>.
            </remarks>
            <value>true to show the major cross tic marks, false otherwise</value>
        </member>
        <member name="F:ZedGraph.MajorTic.Default.IsCrossInside">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.Axis"/> major inside 
            "cross" tic marks (<see cref="P:ZedGraph.MinorTic.IsCrossInside"/> property).
            </summary>
            <remarks>
            The "cross" tics are a special, additional set of tic marks that
            always appear on the actual axis, even if it has been shifted due
            to the <see cref="P:ZedGraph.Axis.Cross"/> setting.  The other tic marks are always
            fixed to the edges of the <see cref="P:ZedGraph.Chart.Rect"/>.  The cross tics
            are normally not displayed, since, if <see cref="P:ZedGraph.Axis.CrossAuto"/> is true,
            they will exactly overlay the "normal" and "inside" tics.  If
            <see cref="P:ZedGraph.Axis.CrossAuto"/> is false, then you will most likely want to
            enable the cross tics.
            The major tic spacing is controlled by <see cref="P:ZedGraph.Scale.MajorStep"/>.
            </remarks>
            <value>true to show the major cross tic marks, false otherwise</value>
        </member>
        <member name="F:ZedGraph.MajorTic.Default.Color">
            <summary>
            The default color for major tics (<see cref="P:ZedGraph.MinorTic.Color"/> property).
            </summary>
        </member>
        <member name="T:ZedGraph.OHLCBarItem">
            <summary>
            Encapsulates a CandleStick curve type that displays a vertical (or horizontal)
            line displaying the range of data values at each sample point, plus an starting
            mark and an ending mark signifying the opening and closing value for the sample.
            </summary>
            <remarks>For this type to work properly, your <see cref="T:ZedGraph.IPointList"/> must contain
            <see cref="T:ZedGraph.StockPt"/> objects, rather than ordinary <see cref="T:ZedGraph.PointPair"/> types.
            This is because the <see cref="T:ZedGraph.OHLCBarItem"/> type actually displays 5 data values
            but the <see cref="T:ZedGraph.PointPair"/> only stores 3 data values.  The <see cref="T:ZedGraph.StockPt"/>
            stores <see cref="P:ZedGraph.StockPt.Date"/>, <see cref="F:ZedGraph.StockPt.Close"/>,
            <see cref="F:ZedGraph.StockPt.Open"/>, <see cref="P:ZedGraph.StockPt.High"/>, and
            <see cref="P:ZedGraph.StockPt.Low"/> members.
            For a vertical CandleStick chart, the opening value is drawn as a horizontal line
            segment to the left of the vertical range bar, and the closing value is a horizontal
            line segment to the right.  The total length of these two line segments is controlled
            by the <see cref="P:ZedGraph.OHLCBar.Size"/> property, which is specified in
            points (1/72nd inch), and scaled according to <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>.
            The candlesticks are drawn horizontally or vertically depending on the
            value of <see cref="P:ZedGraph.BarSettings.Base"/>, which is a
            <see cref="T:ZedGraph.BarBase"/> enum type.</remarks>
            <author> John Champion </author>
            <version> $Revision: 3.2 $ $Date: 2007/01/30 08:02:12 $ </version>
        </member>
        <member name="F:ZedGraph.OHLCBarItem.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.OHLCBarItem._bar">
            <summary>
            Private field that stores a reference to the <see cref="T:ZedGraph.OHLCBar"/>
            class defined for this <see cref="T:ZedGraph.OHLCBarItem"/>.  Use the public
            property <see cref="T:ZedGraph.OHLCBar"/> to access this value.
            </summary>
            
        </member>
        <member name="M:ZedGraph.OHLCBarItem.IsXIndependent(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the X axis is the independent axis for this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the X axis is independent, false otherwise</value>
        </member>
        <member name="M:ZedGraph.OHLCBarItem.IsZIncluded(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the Z data range should be included in the axis scaling calculations.
            </summary>
            <remarks>
            IsZIncluded is true for <see cref="T:ZedGraph.OHLCBarItem"/> objects, since the Y and Z
            values are defined as the High and Low values for the day.</remarks>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the Z data are included, false otherwise</value>
        </member>
        <member name="M:ZedGraph.OHLCBarItem.#ctor(System.String)">
            <summary>
            Create a new <see cref="T:ZedGraph.OHLCBarItem"/>, specifying only the legend label.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
        </member>
        <member name="M:ZedGraph.OHLCBarItem.#ctor(System.String,ZedGraph.IPointList,System.Drawing.Color)">
            <summary>
            Create a new <see cref="T:ZedGraph.OHLCBarItem"/> using the specified properties.
            </summary>
            <param name="label">The _label that will appear in the legend.</param>
            <param name="points">An <see cref="T:ZedGraph.IPointList"/> of double precision values that define
            the Date, Close, Open, High, and Low values for the curve.  Note that this
            <see cref="T:ZedGraph.IPointList"/> should contain <see cref="T:ZedGraph.StockPt"/> items rather
            than <see cref="T:ZedGraph.PointPair"/> items.
            </param>
            <param name="color">
            The <see cref="T:System.Drawing.Color"/> to use for drawing the candlesticks.</param>
        </member>
        <member name="M:ZedGraph.OHLCBarItem.#ctor(ZedGraph.OHLCBarItem)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.OHLCBarItem"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.OHLCBarItem.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.OHLCBarItem.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.OHLCBarItem.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.OHLCBarItem.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.OHLCBarItem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.OHLCBarItem.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.OHLCBarItem"/> to the specified
            <see cref="T:System.Drawing.Graphics"/> device.  This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.CurveList"/>
            collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="pos">The ordinal position of the current <see cref="T:ZedGraph.OHLCBarItem"/>
            curve.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.OHLCBarItem.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            Draw a legend key entry for this <see cref="T:ZedGraph.OHLCBarItem"/> at the specified location
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="rect">The <see cref="T:System.Drawing.RectangleF"/> struct that specifies the
            location for the legend key</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.OHLCBarItem.GetCoords(ZedGraph.GraphPane,System.Int32,System.String@)">
            <summary>
            Determine the coords for the rectangle associated with a specified point for 
            this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> to which this curve belongs</param>
            <param name="i">The index of the point of interest</param>
            <param name="coords">A list of coordinates that represents the "rect" for
            this point (used in an html AREA tag)</param>
            <returns>true if it's a valid point, false otherwise</returns>
        </member>
        <member name="P:ZedGraph.OHLCBarItem.Bar">
            <summary>
            Gets a reference to the <see cref="T:ZedGraph.OHLCBar"/> class defined
            for this <see cref="T:ZedGraph.OHLCBarItem"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.BasicArrayPointList">
            <summary>
            A data collection class for ZedGraph, provided as an alternative to <see cref="T:ZedGraph.PointPairList"/>.
            </summary>
            <remarks>
            The data storage class for ZedGraph can be any type, so long as it uses the <see cref="T:ZedGraph.IPointList"/>
            interface.  This class, albeit simple, is a demonstration of implementing the <see cref="T:ZedGraph.IPointList"/>
            interface to provide a simple data collection using only two arrays.  The <see cref="T:ZedGraph.IPointList"/>
            interface can also be used as a layer between ZedGraph and a database, for example.
            </remarks>
            <seealso cref="T:ZedGraph.PointPairList"/>
            <seealso cref="T:ZedGraph.IPointList"/>
            
            <author> John Champion</author>
            <version> $Revision: 3.4 $ $Date: 2007/02/18 05:51:53 $ </version>
        </member>
        <member name="F:ZedGraph.BasicArrayPointList.x">
            <summary>
            Instance of an array of x values
            </summary>
        </member>
        <member name="F:ZedGraph.BasicArrayPointList.y">
            <summary>
            Instance of an array of x values
            </summary>
        </member>
        <member name="M:ZedGraph.BasicArrayPointList.#ctor(System.Double[],System.Double[])">
            <summary>
            Constructor to initialize the PointPairList from two arrays of
            type double.
            </summary>
        </member>
        <member name="M:ZedGraph.BasicArrayPointList.#ctor(ZedGraph.BasicArrayPointList)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The PointPairList from which to copy</param>
        </member>
        <member name="M:ZedGraph.BasicArrayPointList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.BasicArrayPointList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.BasicArrayPointList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="P:ZedGraph.BasicArrayPointList.Item(System.Int32)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.PointPair"/> object by
            its ordinal position in the list.
            </summary>
            <remarks>
            Returns <see cref="F:ZedGraph.PointPairBase.Missing"/> for any value of <see paramref="index"/>
            that is outside of its corresponding array bounds.
            </remarks>
            <param name="index">The ordinal position (zero-based) of the
            <see cref="T:ZedGraph.PointPair"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.PointPair"/> object reference.</value>
        </member>
        <member name="P:ZedGraph.BasicArrayPointList.Count">
            <summary>
            Returns the number of points available in the arrays.  Count will be the greater
            of the lengths of the X and Y arrays.
            </summary>
        </member>
        <member name="T:ZedGraph.ZoomStateStack">
            <summary>
            A LIFO stack of prior <see cref="T:ZedGraph.ZoomState"/> objects, used to allow zooming out to prior
            states (of scale range settings).
            </summary>
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="M:ZedGraph.ZoomStateStack.#ctor">
            <summary>
            Default Constructor
            </summary>
        </member>
        <member name="M:ZedGraph.ZoomStateStack.#ctor(ZedGraph.ZoomStateStack)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.ZoomStateStack"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.ZoomStateStack.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.ZoomStateStack.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.ZoomStateStack.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.ZoomStateStack.Push(ZedGraph.GraphPane,ZedGraph.ZoomState.StateType)">
            <summary>
            Add the scale range information from the specified <see cref="T:ZedGraph.GraphPane"/> object as a
            new <see cref="T:ZedGraph.ZoomState"/> entry on the stack.
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> object from which the scale range
            information should be copied.</param>
            <param name="type">A <see cref="T:ZedGraph.ZoomState.StateType"/> enumeration that indicates whether this
            state is the result of a zoom or pan operation.</param>
            <returns>The resultant <see cref="T:ZedGraph.ZoomState"/> object that was pushed on the stack.</returns>
        </member>
        <member name="M:ZedGraph.ZoomStateStack.Push(ZedGraph.ZoomState)">
            <summary>
            Add the scale range information from the specified <see cref="T:ZedGraph.ZoomState"/> object as a
            new <see cref="T:ZedGraph.ZoomState"/> entry on the stack.
            </summary>
            <param name="state">The <see cref="T:ZedGraph.ZoomState"/> object to be placed on the stack.</param>
            <returns>The <see cref="T:ZedGraph.ZoomState"/> object (same as the <see paramref="state"/>
            parameter).</returns>
        </member>
        <member name="M:ZedGraph.ZoomStateStack.Pop(ZedGraph.GraphPane)">
            <summary>
            Pop a <see cref="T:ZedGraph.ZoomState"/> entry from the top of the stack, and apply the properties
            to the specified <see cref="T:ZedGraph.GraphPane"/> object.
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> object to which the scale range
            information should be copied.</param>
            <returns>The <see cref="T:ZedGraph.ZoomState"/> object that was "popped" from the stack and applied
            to the specified <see cref="T:ZedGraph.GraphPane"/>.  null if no <see cref="T:ZedGraph.ZoomState"/> was
            available (the stack was empty).</returns>
        </member>
        <member name="M:ZedGraph.ZoomStateStack.PopAll(ZedGraph.GraphPane)">
            <summary>
            Pop the <see cref="T:ZedGraph.ZoomState"/> entry from the bottom of the stack, and apply the properties
            to the specified <see cref="T:ZedGraph.GraphPane"/> object.  Clear the stack completely.
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> object to which the scale range
            information should be copied.</param>
            <returns>The <see cref="T:ZedGraph.ZoomState"/> object at the bottom of the stack that was applied
            to the specified <see cref="T:ZedGraph.GraphPane"/>.  null if no <see cref="T:ZedGraph.ZoomState"/> was
            available (the stack was empty).</returns>
        </member>
        <member name="P:ZedGraph.ZoomStateStack.IsEmpty">
            <summary>
            Public readonly property that indicates if the stack is empty
            </summary>
            <value>true for an empty stack, false otherwise</value>
        </member>
        <member name="P:ZedGraph.ZoomStateStack.Top">
            <summary>
            Gets a reference to the <see cref="T:ZedGraph.ZoomState"/> object at the top of the stack,
            without actually removing it from the stack.
            </summary>
            <value>A <see cref="T:ZedGraph.ZoomState"/> object reference, or null if the stack is empty.</value>
        </member>
        <member name="T:ZedGraph.OrdinalScale">
            <summary>
            The OrdinalScale class inherits from the <see cref="T:ZedGraph.Scale"/> class, and implements
            the features specific to <see cref="F:ZedGraph.AxisType.Ordinal"/>.
            </summary>
            <remarks>
            OrdinalScale is an ordinal axis with tic labels generated at integral values.  An ordinal axis means that
            all data points are evenly spaced at integral values, and the actual coordinate values
            for points corresponding to that axis are ignored.  That is, if the X axis is an
            ordinal type, then all X values associated with the curves are ignored.
            </remarks>
            
            <author> John Champion  </author>
            <version> $Revision: 1.7 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="F:ZedGraph.OrdinalScale.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.OrdinalScale.#ctor(ZedGraph.Axis)">
            <summary>
            Default constructor that defines the owner <see cref="T:ZedGraph.Axis"/>
            (containing object) for this new object.
            </summary>
            <param name="owner">The owner, or containing object, of this instance</param>
        </member>
        <member name="M:ZedGraph.OrdinalScale.#ctor(ZedGraph.Scale,ZedGraph.Axis)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.OrdinalScale"/> object from which to copy</param>
            <param name="owner">The <see cref="T:ZedGraph.Axis"/> object that will own the
            new instance of <see cref="T:ZedGraph.OrdinalScale"/></param>
        </member>
        <member name="M:ZedGraph.OrdinalScale.Clone(ZedGraph.Axis)">
            <summary>
            Create a new clone of the current item, with a new owner assignment
            </summary>
            <param name="owner">The new <see cref="T:ZedGraph.Axis"/> instance that will be
            the owner of the new Scale</param>
            <returns>A new <see cref="T:ZedGraph.Scale"/> clone.</returns>
        </member>
        <member name="M:ZedGraph.OrdinalScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)">
            <summary>
            Select a reasonable ordinal axis scale given a range of data values.
            </summary>
            <remarks>
            This method only applies to <see cref="F:ZedGraph.AxisType.Ordinal"/> type axes, and it
            is called by the general <see cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/> method.  The scale range is chosen
            based on increments of 1, 2, or 5 (because they are even divisors of 10).
            Being an ordinal axis type, the <see cref="P:ZedGraph.Scale.MajorStep"/> value will always be integral.  This
            method honors the <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/> autorange settings.
            In the event that any of the autorange settings are false, the
            corresponding <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>, or <see cref="P:ZedGraph.Scale.MajorStep"/>
            setting is explicitly honored, and the remaining autorange settings (if any) will
            be calculated to accomodate the non-autoranged values.  The basic defaults for
            scale selection are defined using <see cref="F:ZedGraph.Scale.Default.ZeroLever"/>,
            <see cref="F:ZedGraph.Scale.Default.TargetXSteps"/>, and <see cref="F:ZedGraph.Scale.Default.TargetYSteps"/>
            from the <see cref="T:ZedGraph.Scale.Default"/> default class.
            <para>On Exit:</para>
            <para><see cref="P:ZedGraph.Scale.Min"/> is set to scale minimum (if <see cref="P:ZedGraph.Scale.MinAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Max"/> is set to scale maximum (if <see cref="P:ZedGraph.Scale.MaxAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MajorStep"/> is set to scale step size (if <see cref="P:ZedGraph.Scale.MajorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MinorStep"/> is set to scale minor step size (if <see cref="P:ZedGraph.Scale.MinorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Mag"/> is set to a magnitude multiplier according to the data</para>
            <para><see cref="P:ZedGraph.Scale.Format"/> is set to the display format for the values (this controls the
            number of decimal places, whether there are thousands separators, currency types, etc.)</para>
            </remarks>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object
            associated with this <see cref="T:ZedGraph.Axis"/></param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <seealso cref="F:ZedGraph.AxisType.Ordinal"/>
        </member>
        <member name="M:ZedGraph.OrdinalScale.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.OrdinalScale.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.OrdinalScale.Type">
            <summary>
            Return the <see cref="T:ZedGraph.AxisType"/> for this <see cref="T:ZedGraph.Scale"/>, which is
            <see cref="F:ZedGraph.AxisType.Ordinal"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.MasterPane">
            <summary>
            A collection class containing a list of <see cref="T:ZedGraph.GraphPane"/> objects
            organized together in some form.
            </summary>
            
            <author>John Champion</author>
            <version> $Revision: 3.22 $ $Date: 2007/02/18 05:51:53 $ </version>
        </member>
        <member name="T:ZedGraph.PaneBase">
            <summary>
            An abstract base class that defines basic functionality for handling a pane.  This class is the
            parent class for <see cref="T:ZedGraph.MasterPane"/> and <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
            
            <author>John Champion</author>
            <version> $Revision: 3.29 $ $Date: 2007/02/05 06:29:40 $ </version>
        </member>
        <member name="F:ZedGraph.PaneBase.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase._rect">
            <summary>
            The rectangle that defines the full area into which the pane is rendered.  Units are pixels.
            Use the public property <see cref="P:ZedGraph.PaneBase.Rect"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase._title">
            <summary>Private field that holds the main title of the pane.  Use the
            public property <see cref="P:ZedGraph.PaneBase.Title"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase._legend">
            <summary>Private field instance of the <see cref="T:ZedGraph.Legend"/> class.  Use the
            public property <see cref="P:ZedGraph.PaneBase.Legend"/> to access this class.</summary>
        </member>
        <member name="F:ZedGraph.PaneBase._tag">
            <summary>
            Private field that stores the user-defined tag for this <see cref="T:ZedGraph.PaneBase"/>.  This tag
            can be any user-defined value.  If it is a <see cref="T:System.String"/> type, it can be used as
            a parameter to the <see cref="M:ZedGraph.PaneList.IndexOfTag(System.String)"/> method.  Use the public property
            <see cref="P:ZedGraph.PaneBase.Tag"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase._margin">
            <summary>
            private field to store the margin values for this <see cref="T:ZedGraph.PaneBase"/>. Use the
            public property <see cref="P:ZedGraph.PaneBase.Margin"/> to access this property.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase._isFontsScaled">
            <summary>Private field that determines whether or not the fonts, tics, gaps, etc.
            will be scaled according to the actual graph size.  true for font and feature scaling
            with graph size, false for fixed font sizes (scaleFactor = 1.0 constant).
            Use the public property <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/> to access this value. </summary>
            <seealso cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
            <seealso cref="P:ZedGraph.PaneBase.IsPenWidthScaled"/>
        </member>
        <member name="F:ZedGraph.PaneBase._isPenWidthScaled">
            <summary>
            Private field that controls whether or not pen widths are scaled according to the
            size of the graph.  This value is only applicable if <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/>
            is true.  If <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/> is false, then no scaling will be done,
            regardless of the value of <see cref="P:ZedGraph.PaneBase.IsPenWidthScaled"/>.
            </summary>
            <value>true to scale the pen widths according to the size of the graph,
            false otherwise.</value>
            <seealso cref="P:ZedGraph.PaneBase.IsFontsScaled"/>
            <seealso cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
        </member>
        <member name="F:ZedGraph.PaneBase._fill">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Fill"/> data for the
            <see cref="P:ZedGraph.PaneBase.Rect"/> background.  Use the public property <see cref="P:ZedGraph.PaneBase.Fill"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase._border">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Border"/> data for the
            <see cref="P:ZedGraph.PaneBase.Rect"/> border.  Use the public property <see cref="P:ZedGraph.PaneBase.Border"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase._graphObjList">
            <summary>Private field instance of the <see cref="T:ZedGraph.GraphObjList"/> class.  Use the
            public property <see cref="P:ZedGraph.PaneBase.GraphObjList"/> to access this class.</summary>
        </member>
        <member name="F:ZedGraph.PaneBase._baseDimension">
            <summary>Private field that determines the base size of the pane, in inches.
            Fonts, tics, gaps, etc. are scaled according to this base size.
            Use the public property <see cref="P:ZedGraph.PaneBase.BaseDimension"/> to access this value. </summary>
            <seealso cref="F:ZedGraph.PaneBase._isFontsScaled"/>
            <seealso cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
        </member>
        <member name="F:ZedGraph.PaneBase._titleGap">
            <summary>
            private field that stores the gap between the bottom of the pane title and the
            client area of the pane.  This is expressed as a fraction of the title character height.
            </summary>
        </member>
        <member name="M:ZedGraph.PaneBase.#ctor">
            <summary>
            Default constructor for the <see cref="T:ZedGraph.PaneBase"/> class.  Leaves the <see cref="P:ZedGraph.PaneBase.Rect"/> empty.
            </summary>
        </member>
        <member name="M:ZedGraph.PaneBase.#ctor(System.String,System.Drawing.RectangleF)">
            <summary>
            Default constructor for the <see cref="T:ZedGraph.PaneBase"/> class.  Specifies the <see cref="P:ZedGraph.PaneBase.Title"/> of
            the <see cref="T:ZedGraph.PaneBase"/>, and the size of the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
        </member>
        <member name="M:ZedGraph.PaneBase.#ctor(ZedGraph.PaneBase)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.PaneBase"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.PaneBase.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of Clone
            </summary>
            <remarks>
            Note that this method must be called with an explicit cast to ICloneable, and
            that it is inherently virtual.  For example:
            <code>
            ParentClass foo = new ChildClass();
            ChildClass bar = (ChildClass) ((ICloneable)foo).Clone();
            </code>
            Assume that ChildClass is inherited from ParentClass.  Even though foo is declared with
            ParentClass, it is actually an instance of ChildClass.  Calling the ICloneable implementation
            of Clone() on foo actually calls ChildClass.Clone() as if it were a virtual function.
            </remarks>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.PaneBase.ShallowClone">
            <summary>
            Create a shallow, memberwise copy of this class.
            </summary>
            <remarks>
            Note that this method uses MemberWiseClone, which will copy all
            members (shallow) including those of classes derived from this class.</remarks>
            <returns>a new copy of the class</returns>
        </member>
        <member name="M:ZedGraph.PaneBase.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.PaneBase.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.PaneBase.Draw(System.Drawing.Graphics)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.PaneBase"/> to the specified
            <see cref="T:System.Drawing.Graphics"/> device.  This abstract method is implemented by the child
            classes.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
        </member>
        <member name="M:ZedGraph.PaneBase.CalcClientRect(System.Drawing.Graphics,System.Single)">
            <summary>
            Calculate the client area rectangle based on the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
            <remarks>The client rectangle is the actual area available for <see cref="T:ZedGraph.GraphPane"/>
            or <see cref="T:ZedGraph.MasterPane"/> items after taking out space for the margins and the title.
            This method does not take out the area required for the <see cref="P:ZedGraph.PaneBase.Legend"/>.
            To do so, you must separately call <see cref="M:ZedGraph.Legend.CalcRect(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single,System.Drawing.RectangleF@)"/>.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="F:ZedGraph.PaneBase.Default.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.
            </param>
            <returns>The calculated chart rect, in pixel coordinates.</returns>
        </member>
        <member name="M:ZedGraph.PaneBase.DrawPaneFrame(System.Drawing.Graphics,System.Single)">
            <summary>
            Draw the border _border around the <see cref="P:ZedGraph.PaneBase.Rect"/> area.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.
            </param>		
        </member>
        <member name="M:ZedGraph.PaneBase.DrawTitle(System.Drawing.Graphics,System.Single)">
            <summary>
            Draw the <see cref="P:ZedGraph.PaneBase.Title"/> on the graph, centered at the top of the pane.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.
            </param>		
        </member>
        <member name="M:ZedGraph.PaneBase.ReSize(System.Drawing.Graphics,System.Drawing.RectangleF)">
            <summary>
            Change the size of the <see cref="P:ZedGraph.PaneBase.Rect"/>.  Override this method to handle resizing the contents
            as required.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="rect">The new size for the <see cref="P:ZedGraph.PaneBase.Rect"/>.</param>
        </member>
        <member name="M:ZedGraph.PaneBase.CalcScaleFactor">
            <summary>
            Calculate the scaling factor based on the ratio of the current <see cref="P:ZedGraph.PaneBase.Rect"/> dimensions and
            the <see cref="F:ZedGraph.PaneBase.Default.BaseDimension"/>.
            </summary>
            <remarks>This scaling factor is used to proportionally scale the
            features of the <see cref="T:ZedGraph.MasterPane"/> so that small graphs don't have huge fonts, and vice versa.
            The scale factor represents a linear multiple to be applied to font sizes, symbol sizes, tic sizes,
            gap sizes, pen widths, etc.  The units of the scale factor are "World Pixels" per "Standard Point".
            If any object size, in points, is multiplied by this scale factor, the result is the size, in pixels,
            that the object should be drawn using the standard GDI+ drawing instructions.  A "Standard Point"
            is a dimension based on points (1/72nd inch) assuming that the <see cref="P:ZedGraph.PaneBase.Rect"/> size
            matches the <see cref="F:ZedGraph.PaneBase.Default.BaseDimension"/>.
            Note that "World Pixels" will still be transformed by the GDI+ transform matrices to result
            in "Output Device Pixels", but "World Pixels" are the reference basis for the drawing commands.
            </remarks>
            <returns>
            A <see cref="T:System.Single"/> value representing the scaling factor to use for the rendering calculations.
            </returns>
            <seealso cref="P:ZedGraph.PaneBase.BaseDimension"/>
        </member>
        <member name="M:ZedGraph.PaneBase.ScaledPenWidth(System.Single,System.Single)">
            <summary>
            Calculate the scaled pen width, taking into account the scaleFactor and the
            setting of the <see cref="P:ZedGraph.PaneBase.IsPenWidthScaled"/> property of the pane.
            </summary>
            <param name="penWidth">The pen width, in points (1/72 inch)</param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.
            </param>
            <returns>The scaled pen width, in world pixels</returns>
        </member>
        <member name="M:ZedGraph.PaneBase.GetImage">
            <summary>
            Build a <see cref="T:System.Drawing.Bitmap"/> object containing the graphical rendering of
            all the <see cref="T:ZedGraph.GraphPane"/> objects in this list.
            </summary>
            <value>A <see cref="T:System.Drawing.Bitmap"/> object rendered with the current graph.</value>
            <seealso cref="M:ZedGraph.PaneBase.GetImage(System.Int32,System.Int32,System.Single)"/>
            <seealso cref="M:ZedGraph.PaneBase.GetMetafile"/>
            <seealso cref="M:ZedGraph.PaneBase.GetMetafile(System.Int32,System.Int32)"/>
        </member>
        <member name="M:ZedGraph.PaneBase.GetImage(System.Int32,System.Int32,System.Single)">
            <summary>
            Gets an image for the current GraphPane, scaled to the specified size and resolution.
            </summary>
            <param name="width">The scaled width of the bitmap in pixels</param>
            <param name="height">The scaled height of the bitmap in pixels</param>
            <param name="dpi">The resolution of the bitmap, in dots per inch</param>
            <seealso cref="M:ZedGraph.PaneBase.GetImage"/>
            <seealso cref="M:ZedGraph.PaneBase.GetMetafile"/>
            <seealso cref="M:ZedGraph.PaneBase.GetMetafile(System.Int32,System.Int32)"/>
            <seealso cref="T:System.Drawing.Bitmap"/>
        </member>
        <member name="M:ZedGraph.PaneBase.GetMetafile(System.Int32,System.Int32)">
            <summary>
            Gets an enhanced metafile image for the current GraphPane, scaled to the specified size.
            </summary>
            <remarks>
            By definition, a Metafile is a vector drawing, and therefore scaling should not matter.
            However, this method is provided because certain options in Zedgraph, such as
            <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/> are affected by the size of the expected image.
            </remarks>
            <param name="width">The "effective" scaled width of the bitmap in pixels</param>
            <param name="height">The "effective" scaled height of the bitmap in pixels</param>
            <seealso cref="M:ZedGraph.PaneBase.GetImage"/>
            <seealso cref="M:ZedGraph.PaneBase.GetImage(System.Int32,System.Int32,System.Single)"/>
            <seealso cref="M:ZedGraph.PaneBase.GetMetafile"/>
        </member>
        <member name="M:ZedGraph.PaneBase.GetMetafile">
            <summary>
            Gets an enhanced metafile image for the current GraphPane.
            </summary>
            <seealso cref="M:ZedGraph.PaneBase.GetImage"/>
            <seealso cref="M:ZedGraph.PaneBase.GetImage(System.Int32,System.Int32,System.Single)"/>
            <seealso cref="M:ZedGraph.PaneBase.GetMetafile(System.Int32,System.Int32)"/>
        </member>
        <member name="P:ZedGraph.PaneBase.Rect">
            <summary>
            The rectangle that defines the full area into which all graphics
            will be rendered.
            </summary>
            <remarks>Note that this rectangle has x, y, width, and height.  Most of the
            GDI+ graphic primitive actually draw one pixel beyond those dimensions.  For
            example, for a rectangle of ( X=0, Y=0, Width=100, Height=100 ), GDI+ would
            draw into pixels 0 through 100, which is actually 101 pixels.  For the
            ZedGraph Rect, a Width of 100 pixels means that pixels 0 through 99 are used</remarks>
            <value>Units are pixels.</value>
            <seealso cref="M:ZedGraph.PaneBase.ReSize(System.Drawing.Graphics,System.Drawing.RectangleF)"/>
        </member>
        <member name="P:ZedGraph.PaneBase.Legend">
            <summary>
            Accesses the <see cref="P:ZedGraph.PaneBase.Legend"/> for this <see cref="T:ZedGraph.PaneBase"/>
            </summary>
            <value>A reference to a <see cref="P:ZedGraph.PaneBase.Legend"/> object</value>
        </member>
        <member name="P:ZedGraph.PaneBase.Title">
            <summary>
            Gets the <see cref="T:ZedGraph.Label"/> instance that contains the text and attributes of the title.
            This text can be multiple lines separated by newline characters ('\n').
            </summary>
            <seealso cref="T:ZedGraph.FontSpec"/>
            <seealso cref="F:ZedGraph.PaneBase.Default.FontColor"/>
            <seealso cref="F:ZedGraph.PaneBase.Default.FontBold"/>
            <seealso cref="F:ZedGraph.PaneBase.Default.FontItalic"/>
            <seealso cref="F:ZedGraph.PaneBase.Default.FontUnderline"/>
            <seealso cref="F:ZedGraph.PaneBase.Default.FontFamily"/>
            <seealso cref="F:ZedGraph.PaneBase.Default.FontSize"/>
        </member>
        <member name="P:ZedGraph.PaneBase.Tag">
            <summary>
            Gets or sets the user-defined tag for this <see cref="T:ZedGraph.PaneBase"/>.  This tag
            can be any user-defined value.  If it is a <see cref="T:System.String"/> type, it can be used as
            a parameter to the <see cref="M:ZedGraph.PaneList.IndexOfTag(System.String)"/> method.
            </summary>
            <remarks>
            Note that, if you are going to Serialize ZedGraph data, then any type
            that you store in <see cref="P:ZedGraph.PaneBase.Tag"/> must be a serializable type (or
            it will cause an exception).
            </remarks>
        </member>
        <member name="P:ZedGraph.PaneBase.Border">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Border"/> class for drawing the border
            border around the <see cref="P:ZedGraph.PaneBase.Rect"/>
            </summary>
            <seealso cref="F:ZedGraph.PaneBase.Default.BorderColor"/>
            <seealso cref="F:ZedGraph.PaneBase.Default.BorderPenWidth"/>
        </member>
        <member name="P:ZedGraph.PaneBase.Fill">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Fill"/> data for the
            filling the background of the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.PaneBase.GraphObjList">
            <summary>
            Gets or sets the list of <see cref="T:ZedGraph.GraphObj"/> items for this <see cref="T:ZedGraph.GraphPane"/>
            </summary>
            <value>A reference to a <see cref="P:ZedGraph.PaneBase.GraphObjList"/> collection object</value>
        </member>
        <member name="P:ZedGraph.PaneBase.Margin">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Margin"/> instance that controls the space between
            the edge of the <see cref="P:ZedGraph.PaneBase.Rect"/> and the rendered content of the graph.
            </summary>
        </member>
        <member name="P:ZedGraph.PaneBase.BaseDimension">
            <summary>
            BaseDimension is a double precision value that sets "normal" pane size on
            which all the settings are based.  The BaseDimension is in inches.  For
            example, if the BaseDimension is 8.0 inches and the
            <see cref="P:ZedGraph.PaneBase.Title"/> size is 14 points.  Then the pane title font
            will be 14 points high when the <see cref="P:ZedGraph.PaneBase.Rect"/> is approximately 8.0
            inches wide.  If the Rect is 4.0 inches wide, the pane title font will be
            7 points high.  Most features of the graph are scaled in this manner.
            </summary>
            <value>The base dimension reference for the <see cref="P:ZedGraph.PaneBase.Rect"/>, in inches</value>
            <seealso cref="F:ZedGraph.PaneBase.Default.BaseDimension"/>
            <seealso cref="P:ZedGraph.PaneBase.IsFontsScaled"/>
            <seealso cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
        </member>
        <member name="P:ZedGraph.PaneBase.TitleGap">
            <summary>
            Gets or sets the gap between the bottom of the pane title and the
            client area of the pane.  This is expressed as a fraction of the scaled
            <see cref="P:ZedGraph.PaneBase.Title"/> character height.
            </summary>
        </member>
        <member name="P:ZedGraph.PaneBase.IsFontsScaled">
            <summary>
            Determines if the font sizes, tic sizes, gap sizes, etc. will be scaled according to
            the size of the <see cref="P:ZedGraph.PaneBase.Rect"/> and the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  If this
            value is set to false, then the font sizes and tic sizes will always be exactly as
            specified, without any scaling.
            </summary>
            <value>True to have the fonts and tics scaled, false to have them constant</value>
            <seealso cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
        </member>
        <member name="P:ZedGraph.PaneBase.IsPenWidthScaled">
            <summary>
            Gets or sets the property that controls whether or not pen widths are scaled for this
            <see cref="T:ZedGraph.PaneBase"/>.
            </summary>
            <remarks>This value is only applicable if <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/>
            is true.  If <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/> is false, then no scaling will be done,
            regardless of the value of <see cref="P:ZedGraph.PaneBase.IsPenWidthScaled"/>.  Note that scaling the pen
            widths can cause "artifacts" to appear at typical screen resolutions.  This occurs
            because of roundoff differences; in some cases the pen width may round to 1 pixel wide
            and in another it may round to 2 pixels wide.  The result is typically undesirable.
            Therefore, this option defaults to false.  This option is primarily useful for high
            resolution output, such as printer output or high resolution bitmaps (from
            <see cref="M:ZedGraph.PaneBase.GetImage(System.Int32,System.Int32,System.Single)"/>) where it is desirable to have the pen width
            be consistent with the screen image.
            </remarks>
            <value>true to scale the pen widths according to the size of the graph,
            false otherwise.</value>
            <seealso cref="P:ZedGraph.PaneBase.IsFontsScaled"/>
            <seealso cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
        </member>
        <member name="T:ZedGraph.PaneBase.Default">
            <summary>
            A simple struct that defines the default property values for the <see cref="T:ZedGraph.PaneBase"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.IsShowTitle">
            <summary>
            The default display mode for the title at the top of the pane
            (<see cref="P:ZedGraph.PaneBase.Title"/> <see cref="P:ZedGraph.Label.IsVisible"/> property).  true to
            display a title, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.FontFamily">
            <summary>
            The default font family for the title
            (<see cref="P:ZedGraph.PaneBase.Title"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.FontSize">
            <summary>
            The default font size (points) for the
            <see cref="P:ZedGraph.PaneBase.Title"/> (<see cref="P:ZedGraph.FontSpec.Size"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.FontColor">
            <summary>
            The default font color for the
            <see cref="P:ZedGraph.PaneBase.Title"/>
            (<see cref="P:ZedGraph.FontSpec.FontColor"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.FontBold">
            <summary>
            The default font bold mode for the
            <see cref="P:ZedGraph.PaneBase.Title"/>
            (<see cref="P:ZedGraph.FontSpec.IsBold"/> property). true
            for a bold typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.FontItalic">
            <summary>
            The default font italic mode for the
            <see cref="P:ZedGraph.PaneBase.Title"/>
            (<see cref="P:ZedGraph.FontSpec.IsItalic"/> property). true
            for an italic typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.FontUnderline">
            <summary>
            The default font underline mode for the
            <see cref="P:ZedGraph.PaneBase.Title"/>
            (<see cref="P:ZedGraph.FontSpec.IsUnderline"/> property). true
            for an underlined typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.IsBorderVisible">
            <summary>
            The default border mode for the <see cref="T:ZedGraph.PaneBase"/>.
            (<see cref="P:ZedGraph.PaneBase.Border"/> property). true
            to draw a border around the <see cref="P:ZedGraph.PaneBase.Rect"/>,
            false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.BorderColor">
            <summary>
            The default color for the <see cref="T:ZedGraph.PaneBase"/> border.
            (<see cref="P:ZedGraph.PaneBase.Border"/> property). 
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.FillColor">
            <summary>
            The default color for the <see cref="P:ZedGraph.PaneBase.Rect"/> background.
            (<see cref="P:ZedGraph.PaneBase.Fill"/> property). 
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.BorderPenWidth">
            <summary>
            The default pen width for the <see cref="T:ZedGraph.PaneBase"/> border.
            (<see cref="P:ZedGraph.PaneBase.Border"/> property).  Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.BaseDimension">
            <summary>
            The default dimension of the <see cref="P:ZedGraph.PaneBase.Rect"/>, which
            defines a normal sized plot.  This dimension is used to scale the
            fonts, symbols, etc. according to the actual size of the
            <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
            <seealso cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.IsPenWidthScaled">
            <summary>
            The default setting for the <see cref="P:ZedGraph.PaneBase.IsPenWidthScaled"/> option.
            true to have all pen widths scaled according to <see cref="P:ZedGraph.PaneBase.BaseDimension"/>,
            false otherwise.
            </summary>
            <seealso cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.IsFontsScaled">
            <summary>
            The default setting for the <see cref="P:ZedGraph.PaneBase.IsFontsScaled"/> option.
            true to have all fonts scaled according to <see cref="P:ZedGraph.PaneBase.BaseDimension"/>,
            false otherwise.
            </summary>
            <seealso cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>
        </member>
        <member name="F:ZedGraph.PaneBase.Default.TitleGap">
            <summary>
            The default value for the <see cref="P:ZedGraph.PaneBase.TitleGap"/> property, expressed as
            a fraction of the scaled <see cref="P:ZedGraph.PaneBase.Title"/> character height.
            </summary>
        </member>
        <member name="F:ZedGraph.MasterPane.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.MasterPane._paneList">
            <summary>
            Private field that holds a collection of <see cref="T:ZedGraph.GraphPane"/> objects for inclusion
            in this <see cref="T:ZedGraph.MasterPane"/>.  Use the public property <see cref="P:ZedGraph.MasterPane.PaneList"/>
            to access this collection.
            </summary>
        </member>
        <member name="F:ZedGraph.MasterPane._innerPaneGap">
            <summary>
            Private field that sets the amount of space between the GraphPanes.  Use the public property
            <see cref="P:ZedGraph.MasterPane.InnerPaneGap"/> to access this value;
            </summary>
        </member>
        <member name="F:ZedGraph.MasterPane._isUniformLegendEntries">
             <summary>
            Private field that stores a boolean value which signifies whether all 
            <see cref="T:ZedGraph.GraphPane"/>s in the chart use the same entries in their 
            <see cref="T:ZedGraph.Legend"/>  If set to true, only one set of entries will be displayed in 
            this <see cref="T:ZedGraph.Legend"/> instance.  If set to false, this instance will display all 
            entries from all <see cref="T:ZedGraph.GraphPane"/>s.
             </summary>
        </member>
        <member name="F:ZedGraph.MasterPane._isCommonScaleFactor">
            <summary>
            private field that determines if the
            <see cref="M:ZedGraph.MasterPane.DoLayout(System.Drawing.Graphics)"/>
            function will automatically set
            the <see cref="P:ZedGraph.PaneBase.BaseDimension"/> of each <see cref="T:ZedGraph.GraphPane"/> in the
            <see cref="P:ZedGraph.MasterPane.PaneList"/> such that the scale factors have the same value.
            </summary>
        </member>
        <member name="F:ZedGraph.MasterPane._paneLayout">
            <summary>
            private field that saves the paneLayout format specified when
            <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/> was called. This value will
            default to <see cref="F:ZedGraph.MasterPane.Default.PaneLayout"/> if
            <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/> (or an overload) was never called.
            </summary>
        </member>
        <member name="F:ZedGraph.MasterPane._isColumnSpecified">
            <summary>
            Private field that stores the boolean value that determines whether
            <see cref="F:ZedGraph.MasterPane._countList"/> is specifying rows or columns.
            </summary>
        </member>
        <member name="F:ZedGraph.MasterPane._countList">
            <summary>
            private field that stores the row/column item count that was specified to the
            <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/> method.  This values will be
            null if <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/> was never called.
            </summary>
        </member>
        <member name="F:ZedGraph.MasterPane._prop">
            <summary>
            private field that stores the row/column size proportional values as specified
            to the <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/> method.  This
            value will be null if <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/>
            was never called.  
            </summary>
        </member>
        <member name="M:ZedGraph.MasterPane.#ctor">
            <summary>
            Default constructor for the class.  Sets the <see cref="P:ZedGraph.PaneBase.Rect"/> to (0, 0, 500, 375).
            </summary>
        </member>
        <member name="M:ZedGraph.MasterPane.#ctor(System.String,System.Drawing.RectangleF)">
            <summary>
            Default constructor for the class.  Specifies the <see cref="P:ZedGraph.PaneBase.Title"/> of
            the <see cref="T:ZedGraph.MasterPane"/>, and the size of the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
        </member>
        <member name="M:ZedGraph.MasterPane.#ctor(ZedGraph.MasterPane)">
            <summary>
            The Copy Constructor - Make a deep-copy clone of this class instance.
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.MasterPane"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.MasterPane.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.MasterPane.Clone"/> to make a deep copy.
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.MasterPane.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.MasterPane.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.MasterPane.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.MasterPane.OnDeserialization(System.Object)">
            <summary>
            Respond to the callback when the MasterPane objects are fully initialized.
            </summary>
            <param name="sender"></param>
        </member>
        <member name="M:ZedGraph.MasterPane.Add(ZedGraph.GraphPane)">
            <summary>
            Add a <see cref="T:ZedGraph.GraphPane"/> object to the <see cref="P:ZedGraph.MasterPane.PaneList"/> collection at the end of the list.
            </summary>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object to
            be added</param>
            <seealso cref="M:System.Collections.IList.Add(System.Object)"/>
        </member>
        <member name="M:ZedGraph.MasterPane.AxisChange(System.Drawing.Graphics)">
            <summary>
            Call <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/> for all <see cref="T:ZedGraph.GraphPane"/> objects in the
            <see cref="P:ZedGraph.MasterPane.PaneList"/> list.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
        </member>
        <member name="M:ZedGraph.MasterPane.ReSize(System.Drawing.Graphics)">
            <summary>
            Redo the layout using the current size of the <see cref="P:ZedGraph.PaneBase.Rect"/>,
            and also handle resizing the
            contents by calling <see cref="M:ZedGraph.MasterPane.DoLayout(System.Drawing.Graphics)"/>.
            </summary>
            <remarks>This method will use the pane layout that was specified by a call to
            <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/>.  If
            <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/> has not previously been called,
            it will default to <see cref="F:ZedGraph.MasterPane.Default.PaneLayout"/>.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[])"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/>
        </member>
        <member name="M:ZedGraph.MasterPane.ReSize(System.Drawing.Graphics,System.Drawing.RectangleF)">
            <summary>
            Change the size of the <see cref="P:ZedGraph.PaneBase.Rect"/>, and also handle resizing the
            contents by calling <see cref="M:ZedGraph.MasterPane.DoLayout(System.Drawing.Graphics)"/>.
            </summary>
            <remarks>This method will use the pane layout that was specified by a call to
            <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/>.  If
            <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/> has not previously been called,
            it will default to <see cref="F:ZedGraph.MasterPane.Default.PaneLayout"/>.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="rect"></param>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[])"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/>
        </member>
        <member name="M:ZedGraph.MasterPane.CommonScaleFactor">
            <summary>
            Method that forces the scale factor calculations
            (via <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>),
            to give a common scale factor for all <see cref="T:ZedGraph.GraphPane"/> objects in the
            <see cref="P:ZedGraph.MasterPane.PaneList"/>.
            </summary>
            <remarks>
            This will make it such that a given font size will result in the same output font
            size for all <see cref="T:ZedGraph.GraphPane"/>'s.  Note that this does not make the scale
            factor for the <see cref="T:ZedGraph.GraphPane"/>'s the same as that of the
            <see cref="T:ZedGraph.MasterPane"/>.
            </remarks>
            <seealso cref="P:ZedGraph.MasterPane.IsCommonScaleFactor"/>
        </member>
        <member name="M:ZedGraph.MasterPane.Draw(System.Drawing.Graphics)">
            <summary>
            Render all the <see cref="T:ZedGraph.GraphPane"/> objects in the <see cref="P:ZedGraph.MasterPane.PaneList"/> to the
            specified graphics device.
            </summary>
            <remarks>This method should be part of the Paint() update process.  Calling this routine
            will redraw all
            features of all the <see cref="T:ZedGraph.GraphPane"/> items.  No preparation is required other than
            instantiated <see cref="T:ZedGraph.GraphPane"/> objects that have been added to the list with the
            <see cref="M:ZedGraph.MasterPane.Add(ZedGraph.GraphPane)"/> method.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
        </member>
        <member name="M:ZedGraph.MasterPane.FindNearestPaneObject(System.Drawing.PointF,System.Drawing.Graphics,ZedGraph.GraphPane@,System.Object@,System.Int32@)">
            <summary>
            Find the pane and the object within that pane that lies closest to the specified
            mouse (screen) point.
            </summary>
            <remarks>
            This method first finds the <see cref="T:ZedGraph.GraphPane"/> within the list that contains
            the specified mouse point.  It then calls the <see cref="M:ZedGraph.GraphPane.FindNearestObject(System.Drawing.PointF,System.Drawing.Graphics,System.Object@,System.Int32@)"/>
            method to determine which object, if any, was clicked.  With the exception of the
            <see paramref="pane"/>, all the parameters in this method are identical to those
            in the <see cref="M:ZedGraph.GraphPane.FindNearestObject(System.Drawing.PointF,System.Drawing.Graphics,System.Object@,System.Int32@)"/> method.
            If the mouse point lies within the <see cref="P:ZedGraph.PaneBase.Rect"/> of any 
            <see cref="T:ZedGraph.GraphPane"/> item, then that pane will be returned (otherwise it will be
            null).  Further, within the selected pane, if the mouse point is within the
            bounding box of any of the items (or in the case
            of <see cref="T:ZedGraph.ArrowObj"/> and <see cref="T:ZedGraph.CurveItem"/>, within
            <see cref="F:ZedGraph.GraphPane.Default.NearestTol"/> pixels), then the object will be returned.
            You must check the type of the object to determine what object was
            selected (for example, "if ( object is Legend ) ...").  The
            <see paramref="index"/> parameter returns the index number of the item
            within the selected object (such as the point number within a
            <see cref="T:ZedGraph.CurveItem"/> object.
            </remarks>
            <param name="mousePt">The screen point, in pixel coordinates.</param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object that was clicked.</param>
            <param name="nearestObj">A reference to the nearest object to the
            specified screen point.  This can be any of <see cref="T:ZedGraph.Axis"/>,
            <see cref="T:ZedGraph.Legend"/>, <see cref="P:ZedGraph.PaneBase.Title"/>,
            <see cref="T:ZedGraph.TextObj"/>, <see cref="T:ZedGraph.ArrowObj"/>, or <see cref="T:ZedGraph.CurveItem"/>.
            Note: If the pane title is selected, then the <see cref="T:ZedGraph.GraphPane"/> object
            will be returned.
            </param>
            <param name="index">The index number of the item within the selected object
            (where applicable).  For example, for a <see cref="T:ZedGraph.CurveItem"/> object,
            <see paramref="index"/> will be the index number of the nearest data point,
            accessible via <see cref="P:ZedGraph.CurveItem.Points">CurveItem.Points[index]</see>.
            index will be -1 if no data points are available.</param>
            <returns>true if a <see cref="T:ZedGraph.GraphPane"/> was found, false otherwise.</returns>
            <seealso cref="M:ZedGraph.GraphPane.FindNearestObject(System.Drawing.PointF,System.Drawing.Graphics,System.Object@,System.Int32@)"/>
        </member>
        <member name="M:ZedGraph.MasterPane.FindPane(System.Drawing.PointF)">
            <summary>
            Find the <see cref="T:ZedGraph.GraphPane"/> within the <see cref="P:ZedGraph.MasterPane.PaneList"/> that contains the
            <see paramref="mousePt"/> within its <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
            <param name="mousePt">The mouse point location where you want to search</param>
            <returns>A <see cref="T:ZedGraph.GraphPane"/> object that contains the mouse point, or
            null if no <see cref="T:ZedGraph.GraphPane"/> was found.</returns>
        </member>
        <member name="M:ZedGraph.MasterPane.FindChartRect(System.Drawing.PointF)">
            <summary>
            Find the <see cref="T:ZedGraph.GraphPane"/> within the <see cref="P:ZedGraph.MasterPane.PaneList"/> that contains the
            <see paramref="mousePt"/> within its <see cref="P:ZedGraph.Chart.Rect"/>.
            </summary>
            <param name="mousePt">The mouse point location where you want to search</param>
            <returns>A <see cref="T:ZedGraph.GraphPane"/> object that contains the mouse point, or
            null if no <see cref="T:ZedGraph.GraphPane"/> was found.</returns>
        </member>
        <member name="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)">
            <overloads>The SetLayout() methods setup the desired layout of the
            <see cref="T:ZedGraph.GraphPane"/> objects within a <see cref="T:ZedGraph.MasterPane"/>.  These functions
            do not make any changes, they merely set the parameters so that future calls
            to <see cref="M:ZedGraph.PaneBase.ReSize(System.Drawing.Graphics,System.Drawing.RectangleF)"/> or <see cref="M:ZedGraph.MasterPane.DoLayout(System.Drawing.Graphics)"/>
            will use the desired layout.<br/><br/>
            The layout options include a set of "canned" layouts provided by the
            <see cref="T:ZedGraph.PaneLayout"/> enumeration, options to just set a specific
            number of rows and columns of panes (and all pane sizes are the same), and more
            customized options of specifying the number or rows in each column or the number of
            columns in each row, along with proportional values that determine the size of each
            individual column or row.
            </overloads>
            <summary>
            Automatically set all of the <see cref="T:ZedGraph.GraphPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/>'s in
            the list to a pre-defined layout configuration from a <see cref="T:ZedGraph.PaneLayout"/>
            enumeration.
            </summary>
            <remarks>This method uses a <see cref="T:ZedGraph.PaneLayout"/> enumeration to describe the type of layout
            to be used.  Overloads are available that provide other layout options</remarks>
            <param name="paneLayout">A <see cref="T:ZedGraph.PaneLayout"/> enumeration that describes how
            the panes should be laid out within the <see cref="P:ZedGraph.PaneBase.Rect"/>.</param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally created with a call to
            the CreateGraphics() method of the Control or Form.
            </param>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[])"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/>
        </member>
        <member name="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Int32,System.Int32)">
            <summary>
            Automatically set all of the <see cref="T:ZedGraph.GraphPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/>'s in
            the list to a reasonable configuration.
            </summary>
            <remarks>This method explicitly specifies the number of rows and columns to use
            in the layout, and all <see cref="T:ZedGraph.GraphPane"/> objects will have the same size.
            Overloads are available that provide other layout options</remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally created with a call to
            the CreateGraphics() method of the Control or Form.
            </param>
            <param name="rows">The number of rows of <see cref="T:ZedGraph.GraphPane"/> objects
            to include in the layout</param>
            <param name="columns">The number of columns of <see cref="T:ZedGraph.GraphPane"/> objects
            to include in the layout</param>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[])"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/>
        </member>
        <member name="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[])">
            <summary>
            Automatically set all of the <see cref="T:ZedGraph.GraphPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/>'s in
            the list to the specified configuration.
            </summary>
            <remarks>This method specifies the number of rows in each column, or the number of
            columns in each row, allowing for irregular layouts.  Overloads are available that
            provide other layout options.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally created with a call to
            the CreateGraphics() method of the Control or Form.
            </param>
            <param name="isColumnSpecified">Specifies whether the number of columns in each row, or
            the number of rows in each column will be specified.  A value of true indicates the
            number of columns in each row are specified in <see paramref="countList"/>.</param>
            <param name="countList">An integer array specifying either the number of columns in
            each row or the number of rows in each column, depending on the value of
            <see paramref="isColumnSpecified"/>.</param>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/>
        </member>
        <member name="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])">
            <summary>
            Automatically set all of the <see cref="T:ZedGraph.GraphPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/>'s in
            the list to the specified configuration.
            </summary>
            <remarks>This method specifies the number of panes in each row or column, allowing for
            irregular layouts.</remarks>
            <remarks>This method specifies the number of rows in each column, or the number of
            columns in each row, allowing for irregular layouts.  Additionally, a
            <see paramref="proportion"/> parameter is provided that allows varying column or
            row sizes.  Overloads for SetLayout() are available that provide other layout options.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally created with a call to
            the CreateGraphics() method of the Control or Form.
            </param>
            <param name="isColumnSpecified">Specifies whether the number of columns in each row, or
            the number of rows in each column will be specified.  A value of true indicates the
            number of columns in each row are specified in <see paramref="_countList"/>.</param>
            <param name="countList">An integer array specifying either the number of columns in
            each row or the number of rows in each column, depending on the value of
            <see paramref="isColumnSpecified"/>.</param>
            <param name="proportion">An array of float values specifying proportional sizes for each
            row or column.  Note that these proportions apply to the non-specified dimension -- that is,
            if <see paramref="isColumnSpecified"/> is true, then these proportions apply to the row
            heights, and if <see paramref="isColumnSpecified"/> is false, then these proportions apply
            to the column widths.  The values in this array are arbitrary floats -- the dimension of
            any given row or column is that particular proportional value divided by the sum of all
            the values.  For example, let <see paramref="isColumnSpecified"/> be true, and
            <see paramref="proportion"/> is an array with values of { 1.0, 2.0, 3.0 }.  The sum of
            those values is 6.0.  Therefore, the first row is 1/6th of the available height, the
            second row is 2/6th's of the available height, and the third row is 3/6th's of the
            available height.
            </param>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[])"/>
        </member>
        <member name="M:ZedGraph.MasterPane.DoLayout(System.Drawing.Graphics)">
            <summary>
            Modify the <see cref="T:ZedGraph.GraphPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/> sizes of each
            <see cref="T:ZedGraph.GraphPane"/> such that they fit within the <see cref="T:ZedGraph.MasterPane"/>
            in a pre-configured layout.
            </summary>
            <remarks>The <see cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/> method (and overloads) is
            used for setting the layout configuration.</remarks>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[])"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/>
        </member>
        <member name="M:ZedGraph.MasterPane.DoLayout(System.Drawing.Graphics,System.Int32,System.Int32)">
            <summary>
            Internal method that applies a previously set layout with a specific
            row and column count.  This method is only called by
            <see cref="M:ZedGraph.MasterPane.DoLayout(System.Drawing.Graphics)"/>.
            </summary>
        </member>
        <member name="M:ZedGraph.MasterPane.DoLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])">
            <summary>
            Internal method that applies a previously set layout with a rows per column or
            columns per row configuration.  This method is only called by
            <see cref="M:ZedGraph.MasterPane.DoLayout(System.Drawing.Graphics)"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.MasterPane.PaneList">
            <summary>
            Gets or sets the <see cref="P:ZedGraph.MasterPane.PaneList"/> collection instance that holds the list of
            <see cref="T:ZedGraph.GraphPane"/> objects that are included in this <see cref="T:ZedGraph.MasterPane"/>.
            </summary>
            <seealso cref="M:ZedGraph.MasterPane.Add(ZedGraph.GraphPane)"/>
            <seealso cref="P:ZedGraph.MasterPane.Item(System.Int32)"/>
        </member>
        <member name="P:ZedGraph.MasterPane.InnerPaneGap">
            <summary>
            Gets or sets the size of the margin between adjacent <see cref="T:ZedGraph.GraphPane"/>
            objects.
            </summary>
            <remarks>This property is scaled according to <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>,
            based on <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  The default value comes from
            <see cref="F:ZedGraph.MasterPane.Default.InnerPaneGap"/>.
            </remarks>
            <value>The value is in points (1/72nd inch).</value>
        </member>
        <member name="P:ZedGraph.MasterPane.IsUniformLegendEntries">
            <summary>
            Gets or set the value of the	 <see cref="P:ZedGraph.MasterPane.IsUniformLegendEntries"/>
            </summary>
        </member>
        <member name="P:ZedGraph.MasterPane.IsCommonScaleFactor">
            <summary>
            Gets or sets a value that determines if the
            <see cref="M:ZedGraph.MasterPane.DoLayout(System.Drawing.Graphics)"/> method will automatically set the
            <see cref="P:ZedGraph.PaneBase.BaseDimension"/>
            of each <see cref="T:ZedGraph.GraphPane"/> in the <see cref="P:ZedGraph.MasterPane.PaneList"/> such that the
            scale factors have the same value.
            </summary>
            <remarks>
            The scale factors, calculated by <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>, determine
            scaled font sizes, tic lengths, etc.  This function will insure that for
            multiple graphpanes, a certain specified font size will be the same for
            all the panes.
            </remarks>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[])"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/>
            <seealso cref="M:ZedGraph.MasterPane.ReSize(System.Drawing.Graphics,System.Drawing.RectangleF)"/>
        </member>
        <member name="P:ZedGraph.MasterPane.Item(System.Int32)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.GraphPane"/> object from <see cref="P:ZedGraph.MasterPane.PaneList"/>
            by its ordinal position in the list.
            </summary>
            <param name="index">The ordinal position (zero-based) of the
            <see cref="T:ZedGraph.GraphPane"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.GraphPane"/> object reference.</value>
        </member>
        <member name="P:ZedGraph.MasterPane.Item(System.String)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.GraphPane"/> object from <see cref="P:ZedGraph.MasterPane.PaneList"/>
            by its <see cref="P:ZedGraph.PaneBase.Title"/> string.
            </summary>
            <param name="title">The string title of the
            <see cref="T:ZedGraph.GraphPane"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.GraphPane"/> object reference.</value>
        </member>
        <member name="T:ZedGraph.MasterPane.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.MasterPane"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.MasterPane.Default.PaneLayout">
            <summary>
            The default pane layout for
            <see cref="M:ZedGraph.MasterPane.DoLayout(System.Drawing.Graphics)"/>
            method calls.
            </summary>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[])"/>
            <seealso cref="M:ZedGraph.MasterPane.SetLayout(System.Drawing.Graphics,System.Boolean,System.Int32[],System.Single[])"/>
            <seealso cref="M:ZedGraph.MasterPane.ReSize(System.Drawing.Graphics,System.Drawing.RectangleF)"/>
        </member>
        <member name="F:ZedGraph.MasterPane.Default.InnerPaneGap">
            <summary>
            The default value for the <see cref="F:ZedGraph.MasterPane.Default.InnerPaneGap"/> property.
            This is the size of the margin between adjacent <see cref="T:ZedGraph.GraphPane"/>
            objects, in units of points (1/72 inch).
            </summary>
            <seealso cref="P:ZedGraph.MasterPane.InnerPaneGap"/>
        </member>
        <member name="F:ZedGraph.MasterPane.Default.IsShowLegend">
            <summary>
            The default value for the <see cref="P:ZedGraph.Legend.IsVisible"/> property for
            the <see cref="T:ZedGraph.MasterPane"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.MasterPane.Default.IsUniformLegendEntries">
            <summary>
            The default value for the <see cref="F:ZedGraph.MasterPane.Default.IsUniformLegendEntries"/> property.
            </summary>
        </member>
        <member name="F:ZedGraph.MasterPane.Default.IsCommonScaleFactor">
            <summary>
            The default value for the <see cref="F:ZedGraph.MasterPane.Default.IsCommonScaleFactor"/> property.
            </summary>
        </member>
        <member name="T:ZedGraph.LogScale">
            <summary>
            The LogScale class inherits from the <see cref="T:ZedGraph.Scale"/> class, and implements
            the features specific to <see cref="F:ZedGraph.AxisType.Log"/>.
            </summary>
            <remarks>
            LogScale is a non-linear axis in which the values are scaled using the base 10
            <see cref="M:System.Math.Log(System.Double)"/>
            function.
            </remarks>
            
            <author> John Champion  </author>
            <version> $Revision: 1.11 $ $Date: 2007/02/19 08:05:24 $ </version>
        </member>
        <member name="F:ZedGraph.LogScale.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.LogScale.#ctor(ZedGraph.Axis)">
            <summary>
            Default constructor that defines the owner <see cref="T:ZedGraph.Axis"/>
            (containing object) for this new object.
            </summary>
            <param name="owner">The owner, or containing object, of this instance</param>
        </member>
        <member name="M:ZedGraph.LogScale.#ctor(ZedGraph.Scale,ZedGraph.Axis)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.LogScale"/> object from which to copy</param>
            <param name="owner">The <see cref="T:ZedGraph.Axis"/> object that will own the
            new instance of <see cref="T:ZedGraph.LogScale"/></param>
        </member>
        <member name="M:ZedGraph.LogScale.Clone(ZedGraph.Axis)">
            <summary>
            Create a new clone of the current item, with a new owner assignment
            </summary>
            <param name="owner">The new <see cref="T:ZedGraph.Axis"/> instance that will be
            the owner of the new Scale</param>
            <returns>A new <see cref="T:ZedGraph.Scale"/> clone.</returns>
        </member>
        <member name="M:ZedGraph.LogScale.SetupScaleData(ZedGraph.GraphPane,ZedGraph.Axis)">
            <summary>
            Setup some temporary transform values in preparation for rendering the <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <remarks>
            This method is typically called by the parent <see cref="T:ZedGraph.GraphPane"/>
            object as part of the <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/> method.  It is also
            called by <see cref="M:ZedGraph.GraphPane.GeneralTransform(System.Double,System.Double,ZedGraph.CoordType)"/> and
            <see cref="M:ZedGraph.GraphPane.ReverseTransform(System.Drawing.PointF,System.Double@,System.Double@,System.Double@)"/>
            methods to setup for coordinate transformations.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="axis">
            The parent <see cref="T:ZedGraph.Axis"/> for this <see cref="T:ZedGraph.Scale"/>
            </param>
        </member>
        <member name="M:ZedGraph.LogScale.Linearize(System.Double)">
            <summary>
            Convert a value to its linear equivalent for this type of scale.
            </summary>
            <remarks>
            The default behavior is to just return the value unchanged.  However,
            for <see cref="F:ZedGraph.AxisType.Log"/> and <see cref="F:ZedGraph.AxisType.Exponent"/>,
            it returns the log or power equivalent.
            </remarks>
            <param name="val">The value to be converted</param>
        </member>
        <member name="M:ZedGraph.LogScale.DeLinearize(System.Double)">
            <summary>
            Convert a value from its linear equivalent to its actual scale value
            for this type of scale.
            </summary>
            <remarks>
            The default behavior is to just return the value unchanged.  However,
            for <see cref="F:ZedGraph.AxisType.Log"/> and <see cref="F:ZedGraph.AxisType.Exponent"/>,
            it returns the anti-log or inverse-power equivalent.
            </remarks>
            <param name="val">The value to be converted</param>
        </member>
        <member name="M:ZedGraph.LogScale.CalcMajorTicValue(System.Double,System.Double)">
            <summary>
            Determine the value for any major tic.
            </summary>
            <remarks>
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <param name="baseVal">
            The value of the first major tic (floating point double)
            </param>
            <param name="tic">
            The major tic number (0 = first major tic).  For log scales, this is the actual power of 10.
            </param>
            <returns>
            The specified major tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.LogScale.CalcMinorTicValue(System.Double,System.Int32)">
            <summary>
            Determine the value for any minor tic.
            </summary>
            <remarks>
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <param name="baseVal">
            The value of the first major tic (floating point double).  This tic value is the base
            reference for all tics (including minor ones).
            </param>
            <param name="iTic">
            The major tic number (0 = first major tic).  For log scales, this is the actual power of 10.
            </param>
            <returns>
            The specified minor tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.LogScale.CalcMinorStart(System.Double)">
            <summary>
            Internal routine to determine the ordinals of the first minor tic mark
            </summary>
            <param name="baseVal">
            The value of the first major tic for the axis.
            </param>
            <returns>
            The ordinal position of the first minor tic, relative to the first major tic.
            This value can be negative (e.g., -3 means the first minor tic is 3 minor step
            increments before the first major tic.
            </returns>
        </member>
        <member name="M:ZedGraph.LogScale.CalcBaseTic">
            <summary>
            Determine the value for the first major tic.
            </summary>
            <remarks>
            This is done by finding the first possible value that is an integral multiple of
            the step size, taking into account the date/time units if appropriate.
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <returns>
            First major tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.LogScale.CalcNumTics">
            <summary>
            Internal routine to determine the ordinals of the first and last major axis label.
            </summary>
            <returns>
            This is the total number of major tics for this axis.
            </returns>
        </member>
        <member name="M:ZedGraph.LogScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)">
            <summary>
            Select a reasonable base 10 logarithmic axis scale given a range of data values.
            </summary>
            <remarks>
            This method only applies to <see cref="F:ZedGraph.AxisType.Log"/> type axes, and it
            is called by the general <see cref="M:ZedGraph.LogScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/> method.  The scale range is chosen
            based always on powers of 10 (full log cycles).  This
            method honors the <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/> autorange settings.
            In the event that any of the autorange settings are false, the
            corresponding <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>, or <see cref="P:ZedGraph.Scale.MajorStep"/>
            setting is explicitly honored, and the remaining autorange settings (if any) will
            be calculated to accomodate the non-autoranged values.  For log axes, the MinorStep
            value is not used.
            <para>On Exit:</para>
            <para><see cref="P:ZedGraph.Scale.Min"/> is set to scale minimum (if <see cref="P:ZedGraph.Scale.MinAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Max"/> is set to scale maximum (if <see cref="P:ZedGraph.Scale.MaxAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MajorStep"/> is set to scale step size (if <see cref="P:ZedGraph.Scale.MajorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Mag"/> is set to a magnitude multiplier according to the data</para>
            <para><see cref="P:ZedGraph.Scale.Format"/> is set to the display format for the values (this controls the
            number of decimal places, whether there are thousands separators, currency types, etc.)</para>
            </remarks>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object
            associated with this <see cref="T:ZedGraph.Axis"/></param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <seealso cref="M:ZedGraph.LogScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>
            <seealso cref="F:ZedGraph.AxisType.Log"/>
        </member>
        <member name="M:ZedGraph.LogScale.MakeLabel(ZedGraph.GraphPane,System.Int32,System.Double)">
            <summary>
            Make a value label for an <see cref="F:ZedGraph.AxisType.Log"/> <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="index">
            The zero-based, ordinal index of the label to be generated.  For example, a value of 2 would
            cause the third value label on the axis to be generated.
            </param>
            <param name="dVal">
            The numeric value associated with the label.  This value is ignored for log (<see cref="P:ZedGraph.Scale.IsLog"/>)
            and text (<see cref="P:ZedGraph.Scale.IsText"/>) type axes.
            </param>
            <returns>The resulting value label as a <see cref="T:System.String"/></returns>
        </member>
        <member name="M:ZedGraph.LogScale.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.LogScale.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.LogScale.Type">
            <summary>
            Return the <see cref="T:ZedGraph.AxisType"/> for this <see cref="T:ZedGraph.Scale"/>, which is
            <see cref="F:ZedGraph.AxisType.Log"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.LogScale.Min">
            <summary>
            Gets or sets the minimum value for this scale.
            </summary>
            <remarks>
            The set property is specifically adapted for <see cref="F:ZedGraph.AxisType.Log"/> scales,
            in that it automatically limits the setting to values greater than zero.
            </remarks>
        </member>
        <member name="P:ZedGraph.LogScale.Max">
            <summary>
            Gets or sets the maximum value for this scale.
            </summary>
            <remarks>
            The set property is specifically adapted for <see cref="F:ZedGraph.AxisType.Log"/> scales,
            in that it automatically limits the setting to values greater than zero.
            <see cref="T:ZedGraph.XDate"/> struct.
            </remarks>
        </member>
        <member name="T:ZedGraph.Link">
            <summary>
            A class that maintains hyperlink information for a clickable object on the graph.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.5 $ $Date: 2007/02/19 08:05:23 $ </version>
        </member>
        <member name="F:ZedGraph.Link.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
            <remarks>
            schema started with 10 for ZedGraph version 5
            </remarks>
        </member>
        <member name="F:ZedGraph.Link._title">
            <summary>
            Internal field that stores the title string for this link.  
            </summary>
        </member>
        <member name="F:ZedGraph.Link._url">
            <summary>
            Internal field that stores the url string for this link
            </summary>
        </member>
        <member name="F:ZedGraph.Link._target">
            <summary>
            Internal field that stores the target string for this link
            </summary>
        </member>
        <member name="F:ZedGraph.Link._isEnabled">
            <summary>
            Internal field that determines if this link is "live".
            </summary>
        </member>
        <member name="F:ZedGraph.Link.Tag">
            <summary>
            A tag object for use by the user.  This can be used to store additional
            information associated with the <see cref="T:ZedGraph.Link"/>.  ZedGraph does
            not use this value for any purpose.
            </summary>
            <remarks>
            Note that, if you are going to Serialize ZedGraph data, then any type
            that you store in <see cref="F:ZedGraph.Link.Tag"/> must be a serializable type (or
            it will cause an exception).
            </remarks>
        </member>
        <member name="M:ZedGraph.Link.#ctor">
            <summary>
            Default constructor.  Set all properties to string.Empty, or null.
            </summary>
        </member>
        <member name="M:ZedGraph.Link.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a Link instance from a specified title, url, and target.
            </summary>
            <param name="title">The title for the link (which shows up in the tooltip).</param>
            <param name="url">The URL destination for the link.</param>
            <param name="target">The target for the link (typically "_blank" or "_self").</param>
        </member>
        <member name="M:ZedGraph.Link.#ctor(ZedGraph.Link)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.Link"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.Link.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Link.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Link.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Link.MakeCurveItemUrl(ZedGraph.GraphPane,ZedGraph.CurveItem,System.Int32)">
            <summary>
            Create a URL for a <see cref="T:ZedGraph.CurveItem"/> that includes the index of the
            point that was selected.
            </summary>
            <remarks>
            An "index" parameter is added to the <see cref="P:ZedGraph.Link.Url"/> property for this
            link to indicate which point was selected.  Further, if the 
            X or Y axes that correspond to this <see cref="T:ZedGraph.CurveItem"/> are of
            <see cref="F:ZedGraph.AxisType.Text"/>, then an
            additional parameter will be added containing the text value that
            corresponds to the <paramref name="index"/> of the selected point.
            The <see cref="T:ZedGraph.XAxis"/> text parameter will be labeled "xtext", and
            the <see cref="T:ZedGraph.YAxis"/> text parameter will be labeled "ytext".
            </remarks>
            <param name="index">The zero-based index of the selected point</param>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> of interest</param>
            <param name="curve">The <see cref="T:ZedGraph.CurveItem"/> for which to
            make the url string.</param>
            <returns>A string containing the url with an index parameter added.</returns>
        </member>
        <member name="M:ZedGraph.Link.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Link.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.Link.Title">
            <summary>
            Gets or sets the title string for this link.
            </summary>
            <remarks>
            For web controls, this title will be shown as a tooltip when the mouse
            hovers over the area of the object that owns this link.  Set the value to
            <see cref="F:System.String.Empty"/> to have no title.
            </remarks>
        </member>
        <member name="P:ZedGraph.Link.Url">
            <summary>
            Gets or sets the url string for this link.
            </summary>
            <remarks>
            Set this value to <see cref="F:System.String.Empty"/> if you don't want to have
            a hyperlink associated with the object to which this link belongs.
            </remarks>
        </member>
        <member name="P:ZedGraph.Link.Target">
            <summary>
            Gets or sets the target string for this link.
            </summary>
            <remarks>
            This value should be set to a valid target associated with the "Target"
            property of an html hyperlink.  Typically, this would be "_blank" to open
            a new browser window, or "_self" to open in the current browser.
            </remarks>
        </member>
        <member name="P:ZedGraph.Link.IsEnabled">
            <summary>
            Gets or sets a property that determines if this link is active.  True to have
            a clickable link, false to ignore the link.
            </summary>
        </member>
        <member name="P:ZedGraph.Link.IsActive">
            <summary>
            Gets a value that indicates if this <see cref="T:ZedGraph.Link"/> is enabled
            (see <see cref="P:ZedGraph.Link.IsEnabled"/>), and that either the
            <see cref="P:ZedGraph.Link.Url"/> or the <see cref="P:ZedGraph.Link.Title"/> is non-null.
            </summary>
        </member>
        <member name="T:ZedGraph.LineItem">
            <summary>
            Encapsulates a curve type that is displayed as a line and/or a set of
            symbols at each point.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.20 $ $Date: 2007/01/25 07:56:08 $ </version>
        </member>
        <member name="F:ZedGraph.LineItem.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.LineItem._symbol">
            <summary>
            Private field that stores a reference to the <see cref="T:ZedGraph.Symbol"/>
            class defined for this <see cref="T:ZedGraph.LineItem"/>.  Use the public
            property <see cref="P:ZedGraph.LineItem.Symbol"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.LineItem._line">
            <summary>
            Private field that stores a reference to the <see cref="T:ZedGraph.Line"/>
            class defined for this <see cref="T:ZedGraph.LineItem"/>.  Use the public
            property <see cref="P:ZedGraph.LineItem.Line"/> to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.LineItem.IsZIncluded(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the Z data range should be included in the axis scaling calculations.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the Z data are included, false otherwise</value>
        </member>
        <member name="M:ZedGraph.LineItem.IsXIndependent(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the X axis is the independent axis for this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the X axis is independent, false otherwise</value>
        </member>
        <member name="M:ZedGraph.LineItem.#ctor(System.String)">
            <summary>
            Create a new <see cref="T:ZedGraph.LineItem"/>, specifying only the legend <see cref="P:ZedGraph.CurveItem.Label"/>.
            </summary>
            <param name="label">The _label that will appear in the legend.</param>
        </member>
        <member name="M:ZedGraph.LineItem.#ctor(System.String,System.Double[],System.Double[],System.Drawing.Color,ZedGraph.SymbolType,System.Single)">
            <summary>
            Create a new <see cref="T:ZedGraph.LineItem"/> using the specified properties.
            </summary>
            <param name="label">The _label that will appear in the legend.</param>
            <param name="x">An array of double precision values that define
            the independent (X axis) values for this curve</param>
            <param name="y">An array of double precision values that define
            the dependent (Y axis) values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="P:ZedGraph.LineItem.Line"/> and <see cref="P:ZedGraph.LineItem.Symbol"/> properties.
            </param>
            <param name="symbolType">A <see cref="T:ZedGraph.SymbolType"/> enum specifying the
            type of symbol to use for this <see cref="T:ZedGraph.LineItem"/>.  Use <see cref="F:ZedGraph.SymbolType.None"/>
            to hide the symbols.</param>
            <param name="lineWidth">The width (in points) to be used for the <see cref="P:ZedGraph.LineItem.Line"/>.  This
            width is scaled based on <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>.  Use a value of zero to
            hide the line (see <see cref="P:ZedGraph.LineBase.IsVisible"/>).</param>
        </member>
        <member name="M:ZedGraph.LineItem.#ctor(System.String,System.Double[],System.Double[],System.Drawing.Color,ZedGraph.SymbolType)">
            <summary>
            Create a new <see cref="T:ZedGraph.LineItem"/> using the specified properties.
            </summary>
            <param name="label">The _label that will appear in the legend.</param>
            <param name="x">An array of double precision values that define
            the independent (X axis) values for this curve</param>
            <param name="y">An array of double precision values that define
            the dependent (Y axis) values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="P:ZedGraph.LineItem.Line"/> and <see cref="P:ZedGraph.LineItem.Symbol"/> properties.
            </param>
            <param name="symbolType">A <see cref="T:ZedGraph.SymbolType"/> enum specifying the
            type of symbol to use for this <see cref="T:ZedGraph.LineItem"/>.  Use <see cref="F:ZedGraph.SymbolType.None"/>
            to hide the symbols.</param>
        </member>
        <member name="M:ZedGraph.LineItem.#ctor(System.String,ZedGraph.IPointList,System.Drawing.Color,ZedGraph.SymbolType,System.Single)">
            <summary>
            Create a new <see cref="T:ZedGraph.LineItem"/> using the specified properties.
            </summary>
            <param name="label">The _label that will appear in the legend.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="P:ZedGraph.LineItem.Line"/> and <see cref="P:ZedGraph.LineItem.Symbol"/> properties.
            </param>
            <param name="symbolType">A <see cref="T:ZedGraph.SymbolType"/> enum specifying the
            type of symbol to use for this <see cref="T:ZedGraph.LineItem"/>.  Use <see cref="F:ZedGraph.SymbolType.None"/>
            to hide the symbols.</param>
            <param name="lineWidth">The width (in points) to be used for the <see cref="P:ZedGraph.LineItem.Line"/>.  This
            width is scaled based on <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>.  Use a value of zero to
            hide the line (see <see cref="P:ZedGraph.LineBase.IsVisible"/>).</param>
        </member>
        <member name="M:ZedGraph.LineItem.#ctor(System.String,ZedGraph.IPointList,System.Drawing.Color,ZedGraph.SymbolType)">
            <summary>
            Create a new <see cref="T:ZedGraph.LineItem"/> using the specified properties.
            </summary>
            <param name="label">The _label that will appear in the legend.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="P:ZedGraph.LineItem.Line"/> and <see cref="P:ZedGraph.LineItem.Symbol"/> properties.
            </param>
            <param name="symbolType">A <see cref="T:ZedGraph.SymbolType"/> enum specifying the
            type of symbol to use for this <see cref="T:ZedGraph.LineItem"/>.  Use <see cref="F:ZedGraph.SymbolType.None"/>
            to hide the symbols.</param>
        </member>
        <member name="M:ZedGraph.LineItem.#ctor(ZedGraph.LineItem)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.LineItem"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.LineItem.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.LineItem.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.LineItem.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.LineItem.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.LineItem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.LineItem.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.LineItem"/> to the specified
            <see cref="T:System.Drawing.Graphics"/> device.  This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.CurveList"/>
            collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="pos">The ordinal position of the current <see cref="T:ZedGraph.Bar"/>
            curve.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.LineItem.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            Draw a legend key entry for this <see cref="T:ZedGraph.LineItem"/> at the specified location
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="rect">The <see cref="T:System.Drawing.RectangleF"/> struct that specifies the
            location for the legend key</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.LineItem.MakeUnique(ZedGraph.ColorSymbolRotator)">
            <summary>
            Loads some pseudo unique colors/symbols into this LineItem.  This
            is mainly useful for differentiating a set of new LineItems without
            having to pick your own colors/symbols.
            <seealso cref="M:ZedGraph.CurveItem.MakeUnique(ZedGraph.ColorSymbolRotator)"/>
            </summary>
            <param name="rotator">
            The <see cref="T:ZedGraph.ColorSymbolRotator"/> that is used to pick the color
             and symbol for this method call.
            </param>
        </member>
        <member name="M:ZedGraph.LineItem.GetCoords(ZedGraph.GraphPane,System.Int32,System.String@)">
            <summary>
            Determine the coords for the rectangle associated with a specified point for 
            this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> to which this curve belongs</param>
            <param name="i">The index of the point of interest</param>
            <param name="coords">A list of coordinates that represents the "rect" for
            this point (used in an html AREA tag)</param>
            <returns>true if it's a valid point, false otherwise</returns>
        </member>
        <member name="P:ZedGraph.LineItem.Symbol">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Symbol"/> class instance defined
            for this <see cref="T:ZedGraph.LineItem"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.LineItem.Line">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Line"/> class instance defined
            for this <see cref="T:ZedGraph.LineItem"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.HSBColor">
            <summary>
            Hue-Saturation-Brightness Color class to store a color value, and to manage conversions
            to and from RGB colors in the <see cref="T:System.Drawing.Color"/> struct.
            </summary>
            <remarks>
            This class is based on code from http://www.cs.rit.edu/~ncs/color/ by Eugene Vishnevsky.
            This struct stores the hue, saturation, brightness, and alpha values internally as
            <see cref="T:System.Byte"/> values from 0 to 255.  The hue represents a fraction of the 360 degrees
            of color space available. The saturation is the color intensity, where 0 represents gray scale
            and 255 is the most colored.  For the brightness, 0 represents black and 255
            represents white.
            </remarks>
        </member>
        <member name="F:ZedGraph.HSBColor.H">
            <summary>
            The color hue value, ranging from 0 to 255.
            </summary>
            <remarks>
            This property is actually a rescaling of the 360 degrees on the color wheel to 255
            possible values.  Therefore, every 42.5 units is a new sector, with the following
            convention:  red=0, yellow=42.5, green=85, cyan=127.5, blue=170, magenta=212.5
            </remarks>
        </member>
        <member name="F:ZedGraph.HSBColor.S">
            <summary>
            The color saturation (intensity) value, ranging from 0 (gray scale) to 255 (most colored).
            </summary>
        </member>
        <member name="F:ZedGraph.HSBColor.B">
            <summary>
            The brightness value, ranging from 0 (black) to 255 (white).
            </summary>
        </member>
        <member name="F:ZedGraph.HSBColor.A">
            <summary>
            The alpha value (opacity), ranging from 0 (transparent) to 255 (opaque).
            </summary>
        </member>
        <member name="M:ZedGraph.HSBColor.#ctor(System.Int32,System.Int32,System.Int32)">
            <summary>
            Constructor to load an <see cref="T:ZedGraph.HSBColor"/> struct from hue, saturation and
            brightness values
            </summary>
            <param name="h">The color hue value, ranging from 0 to 255</param>
            <param name="s">The color saturation (intensity) value, ranging from 0 (gray scale)
            to 255 (most colored)</param>
            <param name="b">The brightness value, ranging from 0 (black) to 255 (white)</param>
        </member>
        <member name="M:ZedGraph.HSBColor.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Constructor to load an <see cref="T:ZedGraph.HSBColor"/> struct from hue, saturation,
            brightness, and alpha values
            </summary>
            <param name="h">The color hue value, ranging from 0 to 255</param>
            <param name="s">The color saturation (intensity) value, ranging from 0 (gray scale)
            to 255 (most colored)</param>
            <param name="b">The brightness value, ranging from 0 (black) to 255 (white)</param>
            <param name="a">The alpha value (opacity), ranging from 0 (transparent) to
            255 (opaque)</param>
        </member>
        <member name="M:ZedGraph.HSBColor.#ctor(System.Drawing.Color)">
            <summary>
            Constructor to load an <see cref="T:ZedGraph.HSBColor"/> struct from a system
            <see cref="T:System.Drawing.Color"/> struct.
            </summary>
            <param name="color">An rgb <see cref="T:System.Drawing.Color"/> struct containing the equivalent
            color you want to generate</param>
        </member>
        <member name="M:ZedGraph.HSBColor.op_Implicit(ZedGraph.HSBColor)~System.Drawing.Color">
            <summary>
            Implicit conversion operator to convert directly from an <see cref="T:ZedGraph.HSBColor"/> to
            a <see cref="T:System.Drawing.Color"/> struct.
            </summary>
            <param name="hsbColor">The <see cref="T:ZedGraph.HSBColor"/> struct to be converted</param>
            <returns>An equivalent <see cref="T:System.Drawing.Color"/> struct that can be used in the GDI+
            graphics library</returns>
        </member>
        <member name="M:ZedGraph.HSBColor.ToRGB(ZedGraph.HSBColor)">
            <summary>
            Convert an <see cref="T:ZedGraph.HSBColor"/> value to an equivalent <see cref="T:System.Drawing.Color"/> value.
            </summary>
            <remarks>
            This method is based on code from http://www.cs.rit.edu/~ncs/color/ by Eugene Vishnevsky.
            </remarks>
            <param name="hsbColor">The <see cref="T:ZedGraph.HSBColor"/> struct to be converted</param>
            <returns>An equivalent <see cref="T:System.Drawing.Color"/> struct, compatible with the GDI+ library</returns>
        </member>
        <member name="M:ZedGraph.HSBColor.ToRGB">
            <summary>
            Convert this <see cref="T:ZedGraph.HSBColor"/> value to an equivalent <see cref="T:System.Drawing.Color"/> value.
            </summary>
            <remarks>
            This method is based on code from http://www.cs.rit.edu/~ncs/color/ by Eugene Vishnevsky.
            </remarks>
            <returns>An equivalent <see cref="T:System.Drawing.Color"/> struct, compatible with the GDI+ library</returns>
        </member>
        <member name="M:ZedGraph.HSBColor.FromRGB">
            <summary>
            Convert a <see cref="T:System.Drawing.Color"/> value to an equivalent <see cref="T:ZedGraph.HSBColor"/> value.
            </summary>
            <remarks>
            This method is based on code from http://www.cs.rit.edu/~ncs/color/ by Eugene Vishnevsky.
            </remarks>
            <returns>An equivalent <see cref="T:ZedGraph.HSBColor"/> struct</returns>
        </member>
        <member name="M:ZedGraph.HSBColor.FromRGB(System.Drawing.Color)">
            <summary>
            Convert a <see cref="T:System.Drawing.Color"/> value to an equivalent <see cref="T:ZedGraph.HSBColor"/> value.
            </summary>
            <remarks>
            This method is based on code from http://www.cs.rit.edu/~ncs/color/ by Eugene Vishnevsky.
            </remarks>
            <param name="rgbColor">The <see cref="T:System.Drawing.Color"/> struct to be converted</param>
            <returns>An equivalent <see cref="T:ZedGraph.HSBColor"/> struct</returns>
        </member>
        <member name="T:ZedGraph.AxisLabel">
            <summary>
            Class that handles the data associated with text title and its associated font
            properties.  Inherits from <see cref="T:ZedGraph.Label"/>, and adds <see cref="P:ZedGraph.AxisLabel.IsOmitMag"/>
            and <see cref="P:ZedGraph.AxisLabel.IsTitleAtCross"/> properties, which are specifically associated with
            the <see cref="T:ZedGraph.Axis"/> <see cref="P:ZedGraph.Axis.Title"/>.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="T:ZedGraph.GapLabel">
            <summary>
            Class that handles the data associated with a text title and its associated font
            properties.  Inherits from <see cref="T:ZedGraph.Label"/>, and adds the <see cref="P:ZedGraph.GapLabel.Gap"/>
            property for use by the <see cref="T:ZedGraph.Axis"/> and <see cref="T:ZedGraph.PaneBase"/> objects.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="T:ZedGraph.Label">
            <summary>
            Class that handles the data associated with text title and its associated font
            properties
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.2 $ $Date: 2007/03/11 02:08:16 $ </version>
        </member>
        <member name="F:ZedGraph.Label.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Label._text">
            <summary>
            private field that stores the <see cref="T:System.String"/> text for this label
            </summary>
        </member>
        <member name="F:ZedGraph.Label._fontSpec">
            <summary>
            private field that stores the <see cref="P:ZedGraph.Label.FontSpec"/> font properties for this label
            </summary>
        </member>
        <member name="F:ZedGraph.Label._isVisible">
            <summary>
            private field that determines if this label will be displayed.
            </summary>
        </member>
        <member name="M:ZedGraph.Label.#ctor(System.String,System.String,System.Single,System.Drawing.Color,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Constructor to build an <see cref="T:ZedGraph.AxisLabel"/> from the text and the
            associated font properties.
            </summary>
            <param name="text">The <see cref="T:System.String"/> representing the text to be
            displayed</param>
            <param name="fontFamily">The <see cref="T:System.String"/> font family name</param>
            <param name="fontSize">The size of the font in points and scaled according
            to the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> logic.</param>
            <param name="color">The <see cref="T:System.Drawing.Color"/> instance representing the color
            of the font</param>
            <param name="isBold">true for a bold font face</param>
            <param name="isItalic">true for an italic font face</param>
            <param name="isUnderline">true for an underline font face</param>
        </member>
        <member name="M:ZedGraph.Label.#ctor(System.String,ZedGraph.FontSpec)">
            <summary>
            Constructor that builds a <see cref="T:ZedGraph.Label"/> from a text <see cref="T:System.String"/>
            and a <see cref="P:ZedGraph.Label.FontSpec"/> instance.
            </summary>
            <param name="text"></param>
            <param name="fontSpec"></param>
        </member>
        <member name="M:ZedGraph.Label.#ctor(ZedGraph.Label)">
            <summary>
            Copy constructor
            </summary>
            <param name="rhs">the <see cref="T:ZedGraph.Label"/> instance to be copied.</param>
        </member>
        <member name="M:ZedGraph.Label.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Label.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Label.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Label.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Label.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.Label.Text">
            <summary>
            The <see cref="T:System.String"/> text to be displayed
            </summary>
        </member>
        <member name="P:ZedGraph.Label.FontSpec">
            <summary>
            A <see cref="T:ZedGraph.FontSpec"/> instance representing the font properties
            for the displayed text.
            </summary>
        </member>
        <member name="P:ZedGraph.Label.IsVisible">
            <summary>
            Gets or sets a boolean value that determines whether or not this label will be displayed.
            </summary>
        </member>
        <member name="F:ZedGraph.GapLabel.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.GapLabel.#ctor(System.String,System.String,System.Single,System.Drawing.Color,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Constructor to build a <see cref="T:ZedGraph.GapLabel"/> from the text and the
            associated font properties.
            </summary>
            <param name="text">The <see cref="T:System.String"/> representing the text to be
            displayed</param>
            <param name="fontFamily">The <see cref="T:System.String"/> font family name</param>
            <param name="fontSize">The size of the font in points and scaled according
            to the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> logic.</param>
            <param name="color">The <see cref="T:System.Drawing.Color"/> instance representing the color
            of the font</param>
            <param name="isBold">true for a bold font face</param>
            <param name="isItalic">true for an italic font face</param>
            <param name="isUnderline">true for an underline font face</param>
        </member>
        <member name="M:ZedGraph.GapLabel.#ctor(ZedGraph.GapLabel)">
            <summary>
            Copy constructor
            </summary>
            <param name="rhs">the <see cref="T:ZedGraph.AxisLabel"/> instance to be copied.</param>
        </member>
        <member name="M:ZedGraph.GapLabel.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.GapLabel.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.GapLabel.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.GapLabel.GetScaledGap(System.Single)">
            <summary>
            Calculate the size of the <see cref="P:ZedGraph.GapLabel.Gap"/> based on the <see cref="P:ZedGraph.Label.FontSpec"/>
            height, in pixel units and scaled according to <see paramref="scalefactor"/>.
            </summary>
            <param name="scaleFactor">The scaling factor to be applied</param>
        </member>
        <member name="M:ZedGraph.GapLabel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.GapLabel.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.GapLabel.Gap">
            <summary>
            Gets or sets the gap factor between this label and the opposing <see cref="T:ZedGraph.Axis"/>
            or <see cref="T:ZedGraph.Chart"/>.
            </summary>
            <remarks>
            This value is expressed as a fraction of the character height for the <see cref="T:ZedGraph.GapLabel"/>.
            </remarks>
        </member>
        <member name="T:ZedGraph.GapLabel.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.GapLabel"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.GapLabel.Default.Gap">
            <summary>
            The default <see cref="P:ZedGraph.GapLabel.Gap"/> setting.
            </summary>
        </member>
        <member name="F:ZedGraph.AxisLabel.schema3">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.AxisLabel.#ctor(System.String,System.String,System.Single,System.Drawing.Color,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Constructor to build an <see cref="T:ZedGraph.AxisLabel"/> from the text and the
            associated font properties.
            </summary>
            <param name="text">The <see cref="T:System.String"/> representing the text to be
            displayed</param>
            <param name="fontFamily">The <see cref="T:System.String"/> font family name</param>
            <param name="fontSize">The size of the font in points and scaled according
            to the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> logic.</param>
            <param name="color">The <see cref="T:System.Drawing.Color"/> instance representing the color
            of the font</param>
            <param name="isBold">true for a bold font face</param>
            <param name="isItalic">true for an italic font face</param>
            <param name="isUnderline">true for an underline font face</param>
        </member>
        <member name="M:ZedGraph.AxisLabel.#ctor(ZedGraph.AxisLabel)">
            <summary>
            Copy constructor
            </summary>
            <param name="rhs">the <see cref="T:ZedGraph.AxisLabel"/> instance to be copied.</param>
        </member>
        <member name="M:ZedGraph.AxisLabel.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.AxisLabel.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.AxisLabel.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.AxisLabel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.AxisLabel.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.AxisLabel.IsOmitMag">
            <summary>
            Gets or sets the property that controls whether or not the magnitude factor (power of 10) for
            this scale will be included in the label.
            </summary>
            <remarks>
            For large scale values, a "magnitude" value (power of 10) is automatically
            used for scaling the graph.  This magnitude value is automatically appended
            to the end of the Axis <see cref="P:ZedGraph.Axis.Title"/> (e.g., "(10^4)") to indicate
            that a magnitude is in use.  This property controls whether or not the
            magnitude is included in the title.  Note that it only affects the axis
            title; a magnitude value may still be used even if it is not shown in the title.
            </remarks>
            <value>true to show the magnitude value, false to hide it</value>
            <seealso cref="P:ZedGraph.Axis.Title"/>
            <seealso cref="P:ZedGraph.Scale.Mag"/>
            <seealso cref="P:ZedGraph.Scale.Format"/>
        </member>
        <member name="P:ZedGraph.AxisLabel.IsTitleAtCross">
            <summary>
            Gets or sets a value that determines whether the Axis title is located at the
            <see cref="P:ZedGraph.Axis.Cross"/>
            value or at the normal position (outside the <see cref="P:ZedGraph.Chart.Rect"/>).
            </summary>
            <remarks>
            This value only applies if <see cref="P:ZedGraph.Axis.CrossAuto"/> is false.
            </remarks>
        </member>
        <member name="T:ZedGraph.Y2AxisList">
            <summary>
            A collection class containing a list of <see cref="T:ZedGraph.YAxis"/> objects.
            </summary>
            
            <author>John Champion</author>
            <version> $Revision: 3.3 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="M:ZedGraph.Y2AxisList.#ctor">
            <summary>
            Default constructor for the collection class.
            </summary>
        </member>
        <member name="M:ZedGraph.Y2AxisList.#ctor(ZedGraph.Y2AxisList)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.Y2AxisList"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.Y2AxisList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Y2AxisList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Y2AxisList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Y2AxisList.IndexOf(System.String)">
            <summary>
            Return the zero-based position index of the
            <see cref="T:ZedGraph.Axis"/> with the specified <see cref="P:ZedGraph.Axis.Title"/>.
            </summary>
            <remarks>The comparison of titles is not case sensitive, but it must include
            all characters including punctuation, spaces, etc.</remarks>
            <param name="title">The <see cref="T:System.String"/> label that is in the
            <see cref="P:ZedGraph.Axis.Title"/> attribute of the item to be found.
            </param>
            <returns>The zero-based index of the specified <see cref="T:ZedGraph.Axis"/>,
            or -1 if the <see cref="P:ZedGraph.Axis.Title"/> was not found in the list</returns>
            <seealso cref="M:ZedGraph.Y2AxisList.IndexOfTag(System.String)"/>
        </member>
        <member name="M:ZedGraph.Y2AxisList.IndexOfTag(System.String)">
            <summary>
            Return the zero-based position index of the
            <see cref="T:ZedGraph.Axis"/> with the specified <see cref="F:ZedGraph.Axis.Tag"/>.
            </summary>
            <remarks>In order for this method to work, the <see cref="F:ZedGraph.Axis.Tag"/>
            property must be of type <see cref="T:System.String"/>.</remarks>
            <param name="tagStr">The <see cref="T:System.String"/> tag that is in the
            <see cref="F:ZedGraph.Axis.Tag"/> attribute of the item to be found.
            </param>
            <returns>The zero-based index of the specified <see cref="T:ZedGraph.Axis"/>,
            or -1 if the <see cref="F:ZedGraph.Axis.Tag"/> string is not in the list</returns>
            <seealso cref="M:ZedGraph.Y2AxisList.IndexOf(System.String)"/>
        </member>
        <member name="M:ZedGraph.Y2AxisList.Add(System.String)">
            <summary>
            Create a new <see cref="T:ZedGraph.Y2Axis"/> and add it to this list.
            </summary>
            <param name="title">The title string for the new axis</param>
            <returns>An integer representing the ordinal position of the new <see cref="T:ZedGraph.Y2Axis"/> in
            this <see cref="T:ZedGraph.Y2AxisList"/>.  This is the value that you would set the
            <see cref="P:ZedGraph.CurveItem.YAxisIndex"/> property of a given <see cref="T:ZedGraph.CurveItem"/> to 
            assign it to this new <see cref="T:ZedGraph.Y2Axis"/>.  Note that, for a <see cref="T:ZedGraph.Y2Axis"/>,
            you would also need to set the <see cref="P:ZedGraph.CurveItem.IsY2Axis"/> property to true.</returns>
        </member>
        <member name="P:ZedGraph.Y2AxisList.Item(System.Int32)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.Axis"/> object by
            its ordinal position in the list.
            </summary>
            <param name="index">The ordinal position (zero-based) of the
            <see cref="T:ZedGraph.YAxis"/> object to be accessed.</param>
            <value>An <see cref="T:ZedGraph.Axis"/> object reference.</value>
        </member>
        <member name="P:ZedGraph.Y2AxisList.Item(System.String)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.Axis"/> object by
            its <see cref="P:ZedGraph.Axis.Title"/> string.
            </summary>
            <param name="title">The string title of the
            <see cref="T:ZedGraph.YAxis"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.Axis"/> object reference.</value>
        </member>
        <member name="T:ZedGraph.PaneLayoutMgr">
            <summary>
            internal class to store pane layout details for the <see cref="T:ZedGraph.MasterPane"/>
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="F:ZedGraph.PaneLayoutMgr.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayoutMgr._paneLayout">
            <summary>
            private field that saves the paneLayout format specified when
            <see cref="M:ZedGraph.PaneLayoutMgr.SetLayout(ZedGraph.PaneLayout)"/> was called. This value will
            default to <see cref="F:ZedGraph.MasterPane.Default.PaneLayout"/> if
            <see cref="M:ZedGraph.PaneLayoutMgr.SetLayout(ZedGraph.PaneLayout)"/> (or an overload) was never called.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayoutMgr._isColumnSpecified">
            <summary>
            Private field that stores the boolean value that determines whether
            <see cref="F:ZedGraph.PaneLayoutMgr._countList"/> is specifying rows or columns.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayoutMgr._countList">
            <summary>
            private field that stores the row/column item count that was specified to the
            <see cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[],System.Single[])"/> method.  This values will be
            null if <see cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[],System.Single[])"/> was never called.
            </summary>
        </member>
        <member name="F:ZedGraph.PaneLayoutMgr._prop">
            <summary>
            private field that stores the row/column size proportional values as specified
            to the <see cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[],System.Single[])"/> method.  This
            value will be null if <see cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[],System.Single[])"/>
            was never called.  
            </summary>
        </member>
        <member name="M:ZedGraph.PaneLayoutMgr.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.PaneLayoutMgr.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.PaneLayoutMgr.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.PaneLayoutMgr.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.PaneLayoutMgr.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.PaneLayoutMgr.SetLayout(ZedGraph.PaneLayout)">
            <overloads>The SetLayout() methods setup the desired layout of the
            <see cref="T:ZedGraph.GraphPane"/> objects within a <see cref="T:ZedGraph.MasterPane"/>.  These functions
            do not make any changes, they merely set the parameters so that future calls
            to <see cref="M:ZedGraph.PaneBase.ReSize(System.Drawing.Graphics,System.Drawing.RectangleF)"/> or <see cref="M:ZedGraph.PaneLayoutMgr.DoLayout(System.Drawing.Graphics,ZedGraph.MasterPane)"/>
            will use the desired layout.<br/><br/>
            The layout options include a set of "canned" layouts provided by the
            <see cref="T:ZedGraph.PaneLayout"/> enumeration, options to just set a specific
            number of rows and columns of panes (and all pane sizes are the same), and more
            customized options of specifying the number or rows in each column or the number of
            columns in each row, along with proportional values that determine the size of each
            individual column or row.
            </overloads>
            <summary>
            Automatically set all of the <see cref="T:ZedGraph.GraphPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/>'s in
            the list to a pre-defined layout configuration from a <see cref="T:ZedGraph.PaneLayout"/>
            enumeration.
            </summary>
            <remarks>This method uses a <see cref="T:ZedGraph.PaneLayout"/> enumeration to describe the type of layout
            to be used.  Overloads are available that provide other layout options</remarks>
            <param name="paneLayout">A <see cref="T:ZedGraph.PaneLayout"/> enumeration that describes how
            the panes should be laid out within the <see cref="P:ZedGraph.PaneBase.Rect"/>.</param>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[])"/>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[],System.Single[])"/>
        </member>
        <member name="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Int32,System.Int32)">
            <summary>
            Automatically set all of the <see cref="T:ZedGraph.GraphPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/>'s in
            the list to a reasonable configuration.
            </summary>
            <remarks>This method explicitly specifies the number of rows and columns to use
            in the layout, and all <see cref="T:ZedGraph.GraphPane"/> objects will have the same size.
            Overloads are available that provide other layout options</remarks>
            <param name="rows">The number of rows of <see cref="T:ZedGraph.GraphPane"/> objects
            to include in the layout</param>
            <param name="columns">The number of columns of <see cref="T:ZedGraph.GraphPane"/> objects
            to include in the layout</param>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[])"/>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[],System.Single[])"/>
        </member>
        <member name="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[])">
            <summary>
            Automatically set all of the <see cref="T:ZedGraph.GraphPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/>'s in
            the list to the specified configuration.
            </summary>
            <remarks>This method specifies the number of rows in each column, or the number of
            columns in each row, allowing for irregular layouts.  Overloads are available that
            provide other layout options.
            </remarks>
            <param name="isColumnSpecified">Specifies whether the number of columns in each row, or
            the number of rows in each column will be specified.  A value of true indicates the
            number of columns in each row are specified in <see paramref="countList"/>.</param>
            <param name="countList">An integer array specifying either the number of columns in
            each row or the number of rows in each column, depending on the value of
            <see paramref="isColumnSpecified"/>.</param>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[],System.Single[])"/>
        </member>
        <member name="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[],System.Single[])">
            <summary>
            Automatically set all of the <see cref="T:ZedGraph.GraphPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/>'s in
            the list to the specified configuration.
            </summary>
            <remarks>This method specifies the number of panes in each row or column, allowing for
            irregular layouts.</remarks>
            <remarks>This method specifies the number of rows in each column, or the number of
            columns in each row, allowing for irregular layouts.  Additionally, a
            <see paramref="proportion"/> parameter is provided that allows varying column or
            row sizes.  Overloads for SetLayout() are available that provide other layout options.
            </remarks>
            <param name="isColumnSpecified">Specifies whether the number of columns in each row, or
            the number of rows in each column will be specified.  A value of true indicates the
            number of columns in each row are specified in <see paramref="_countList"/>.</param>
            <param name="countList">An integer array specifying either the number of columns in
            each row or the number of rows in each column, depending on the value of
            <see paramref="isColumnSpecified"/>.</param>
            <param name="proportion">An array of float values specifying proportional sizes for each
            row or column.  Note that these proportions apply to the non-specified dimension -- that is,
            if <see paramref="isColumnSpecified"/> is true, then these proportions apply to the row
            heights, and if <see paramref="isColumnSpecified"/> is false, then these proportions apply
            to the column widths.  The values in this array are arbitrary floats -- the dimension of
            any given row or column is that particular proportional value divided by the sum of all
            the values.  For example, let <see paramref="isColumnSpecified"/> be true, and
            <see paramref="proportion"/> is an array with values of { 1.0, 2.0, 3.0 }.  The sum of
            those values is 6.0.  Therefore, the first row is 1/6th of the available height, the
            second row is 2/6th's of the available height, and the third row is 3/6th's of the
            available height.
            </param>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[])"/>
        </member>
        <member name="M:ZedGraph.PaneLayoutMgr.DoLayout(System.Drawing.Graphics,ZedGraph.MasterPane)">
            <summary>
            Modify the <see cref="T:ZedGraph.GraphPane"/> <see cref="P:ZedGraph.PaneBase.Rect"/> sizes of each
            <see cref="T:ZedGraph.GraphPane"/> such that they fit within the <see cref="T:ZedGraph.MasterPane"/>
            in a pre-configured layout.
            </summary>
            <remarks>The <see cref="M:ZedGraph.PaneLayoutMgr.SetLayout(ZedGraph.PaneLayout)"/> method (and overloads) is
            used for setting the layout configuration.</remarks>
            <param name="g">A <see cref="T:System.Drawing.Graphics"/> instance to be used for font sizing,
            etc. in determining the layout configuration.</param>
            <param name="master">The <see cref="T:ZedGraph.MasterPane"/> instance which is to
            be resized.</param>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(ZedGraph.PaneLayout)"/>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Int32,System.Int32)"/>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[])"/>
            <seealso cref="M:ZedGraph.PaneLayoutMgr.SetLayout(System.Boolean,System.Int32[],System.Single[])"/>
        </member>
        <member name="M:ZedGraph.PaneLayoutMgr.DoLayout(System.Drawing.Graphics,ZedGraph.MasterPane,System.Int32,System.Int32)">
            <summary>
            Internal method that applies a previously set layout with a specific
            row and column count.  This method is only called by
            <see cref="M:ZedGraph.PaneLayoutMgr.DoLayout(System.Drawing.Graphics,ZedGraph.MasterPane)"/>.
            </summary>
        </member>
        <member name="M:ZedGraph.PaneLayoutMgr.DoLayout(System.Drawing.Graphics,ZedGraph.MasterPane,System.Boolean,System.Int32[],System.Single[])">
            <summary>
            Internal method that applies a previously set layout with a rows per column or
            columns per row configuration.  This method is only called by
            <see cref="M:ZedGraph.PaneLayoutMgr.DoLayout(System.Drawing.Graphics,ZedGraph.MasterPane)"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.HiLowBarItem">
            <summary>
            Encapsulates an "High-Low" Bar curve type that displays a bar in which both
            the bottom and the top of the bar are set by data valuesfrom the
            <see cref="T:ZedGraph.PointPair"/> struct.
            </summary>
            <remarks>The <see cref="T:ZedGraph.HiLowBarItem"/> type is intended for displaying
            bars that cover a band of data, such as a confidence interval, "waterfall"
            chart, etc.  The width of the bar can be set in two ways.  First,
            <see cref="P:ZedGraph.HiLowBar.Size"/> can be used to set a width in points (1/72nd inch),
            that is scaled using the regular scalefactor method (see
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>).  In this manner, the bar widths
            are set similar to symbol sizes.  The other method is to set
            <see cref="P:ZedGraph.HiLowBar.IsAutoSize"/> to true, which will cause the bars
            to be scaled just like a <see cref="T:ZedGraph.BarItem"/> in which only one
            bar series is present.  That is, the bars width will be the width of
            a cluster less the clustergap (see <see cref="M:ZedGraph.BarSettings.GetClusterWidth"/>
            and <see cref="P:ZedGraph.BarSettings.MinClusterGap"/>). The position of each bar is set
            according to the <see cref="T:ZedGraph.PointPair"/> values.  The independent axis
            is assigned with <see cref="P:ZedGraph.BarSettings.Base"/>, and is a
            <see cref="T:ZedGraph.BarBase"/> enum type.  If <see cref="P:ZedGraph.BarSettings.Base"/>
            is set to <see cref="F:ZedGraph.BarBase.Y"/> or <see cref="F:ZedGraph.BarBase.Y2"/>, then
            the bars will actually be horizontal, since the X axis becomes the
            value axis and the Y or Y2 axis becomes the independent axis.</remarks>
            <author> John Champion </author>
            <version> $Revision: 3.16 $ $Date: 2007/01/21 07:49:05 $ </version>
        </member>
        <member name="F:ZedGraph.HiLowBarItem.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.HiLowBarItem._bar">
            <summary>
            Private field that stores a reference to the <see cref="T:ZedGraph.HiLowBar"/>
            class defined for this <see cref="T:ZedGraph.HiLowBarItem"/>.  Use the public
            property <see cref="P:ZedGraph.HiLowBarItem.Bar"/> to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.#ctor(System.String,System.Double[],System.Double[],System.Double[],System.Drawing.Color)">
            <summary>
            Create a new <see cref="T:ZedGraph.HiLowBarItem"/> using the specified properties.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
            <param name="x">An array of double precision values that define
            the independent (X axis) values for this curve</param>
            <param name="y">An array of double precision values that define
            the dependent (Y axis) values for this curve</param>
            <param name="baseVal">An array of double precision values that define the
            base value (the bottom) of the bars for this curve.
            </param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="P:ZedGraph.Bar.Fill"/> and <see cref="P:ZedGraph.Bar.Border"/> properties.
            </param>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.#ctor(System.String,ZedGraph.IPointList,System.Drawing.Color)">
            <summary>
            Create a new <see cref="T:ZedGraph.HiLowBarItem"/> using the specified properties.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value trio's that define
            the X, Y, and lower dependent values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="P:ZedGraph.Bar.Fill"/> and <see cref="P:ZedGraph.Bar.Border"/> properties.
            </param>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.#ctor(ZedGraph.HiLowBarItem)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.HiLowBarItem"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.HiLowBarItem.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.IsZIncluded(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the Z data range should be included in the axis scaling calculations.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the Z data are included, false otherwise</value>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.IsXIndependent(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the X axis is the independent axis for this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the X axis is independent, false otherwise</value>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.HiLowBarItem"/> to the specified
            <see cref="T:System.Drawing.Graphics"/> device.  This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.CurveList"/>
            collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="pos">The ordinal position of the current <see cref="T:ZedGraph.ErrorBarItem"/>
            curve.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            Draw a legend key entry for this <see cref="T:ZedGraph.HiLowBarItem"/> at the specified location
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="rect">The <see cref="T:System.Drawing.RectangleF"/> struct that specifies the
            location for the legend key</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.HiLowBarItem.GetCoords(ZedGraph.GraphPane,System.Int32,System.String@)">
            <summary>
            Determine the coords for the rectangle associated with a specified point for 
            this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> to which this curve belongs</param>
            <param name="i">The index of the point of interest</param>
            <param name="coords">A list of coordinates that represents the "rect" for
            this point (used in an html AREA tag)</param>
            <returns>true if it's a valid point, false otherwise</returns>
        </member>
        <member name="P:ZedGraph.HiLowBarItem.Bar">
            <summary>
            Gets a reference to the <see cref="T:ZedGraph.HiLowBar"/> class defined
            for this <see cref="T:ZedGraph.HiLowBarItem"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.GraphPane">
            <summary>
            Class <see cref="T:ZedGraph.GraphPane"/> encapsulates the graph pane, which is all display elements
            associated with an individual graph.
            </summary>
            <remarks>This class is the outside "wrapper"
            for the ZedGraph classes, and provides the interface to access the attributes
            of the graph.  You can have multiple graphs in the same document or form,
            just instantiate multiple GraphPane's.
            </remarks>
            
            <author> John Champion modified by Jerry Vos </author>
            <version> $Revision: 3.75 $ $Date: 2007/03/11 02:08:16 $ </version>
        </member>
        <member name="F:ZedGraph.GraphPane.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.GraphPane._xAxis">
            <summary>Private field instance of the <see cref="T:ZedGraph.XAxis"/> class.  Use the
            public property <see cref="P:ZedGraph.GraphPane.XAxis"/> to access this class.</summary>
        </member>
        <member name="F:ZedGraph.GraphPane._yAxisList">
            <summary>Private field instance of the <see cref="T:ZedGraph.YAxisList"/> class.  Use the
            public property <see cref="P:ZedGraph.GraphPane.YAxisList"/> to access this class.</summary>
        </member>
        <member name="F:ZedGraph.GraphPane._y2AxisList">
            <summary>Private field instance of the <see cref="T:ZedGraph.Y2AxisList"/> class.  Use the
            public property <see cref="P:ZedGraph.GraphPane.Y2AxisList"/> to access this class.</summary>
        </member>
        <member name="F:ZedGraph.GraphPane._curveList">
            <summary>Private field instance of the <see cref="T:ZedGraph.CurveList"/> class.  Use the
            public property <see cref="P:ZedGraph.GraphPane.CurveList"/> to access this class.</summary>
        </member>
        <member name="F:ZedGraph.GraphPane._zoomStack">
            <summary>
            private value that contains a <see cref="T:ZedGraph.ZoomStateStack"/>, which stores prior
            <see cref="T:ZedGraph.ZoomState"/> objects containing scale range information.  This enables
            zooming and panning functionality for the <see cref="T:ZedGraph.ZedGraphControl"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphPane._isIgnoreInitial">
            <summary>Private field that determines whether or not initial zero values will
            be included or excluded when determining the Y or Y2 axis scale range.
            Use the public property <see cref="P:ZedGraph.GraphPane.IsIgnoreInitial"/> to access
            this value. </summary>
        </member>
        <member name="F:ZedGraph.GraphPane._isIgnoreMissing">
            <summary>Private field that determines whether or not initial
            <see cref="F:ZedGraph.PointPairBase.Missing"/> values will cause the line segments of
            a curve to be discontinuous.  If this field is true, then the curves
            will be plotted as continuous lines as if the Missing values did not
            exist.
            Use the public property <see cref="P:ZedGraph.GraphPane.IsIgnoreMissing"/> to access
            this value. </summary>
        </member>
        <member name="F:ZedGraph.GraphPane._isBoundedRanges">
            <summary> private field that determines if the auto-scaled axis ranges will subset the
            data points based on any manually set scale range values.  Use the public property
            <see cref="P:ZedGraph.GraphPane.IsBoundedRanges"/> to access this value.</summary>
            <remarks>The bounds provide a means to subset the data.  For example, if all the axes are set to
            autoscale, then the full range of data are used.  But, if the XAxis.Min and XAxis.Max values
            are manually set, then the Y data range will reflect the Y values within the bounds of
            XAxis.Min and XAxis.Max.</remarks>
        </member>
        <member name="F:ZedGraph.GraphPane._isAlignGrids">
            <summary>
            private field that determines if ZedGraph should modify the scale ranges for the Y and Y2
            axes such that the number of steps, and therefore the grid lines, line up.  Use the
            public property <see cref="P:ZedGraph.GraphPane.IsAlignGrids"/> to acccess this value.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphPane._lineType">
            <summary>Private field that determines how the <see cref="T:ZedGraph.LineItem"/>
            graphs will be displayed. See the <see cref="T:ZedGraph.LineType"/> enum
            for the individual types available.
            To access this value, use the public property <see cref="P:ZedGraph.GraphPane.LineType"/>.
            </summary>
            <seealso cref="F:ZedGraph.GraphPane.Default.LineType"/>
        </member>
        <member name="M:ZedGraph.GraphPane.#ctor">
            <summary>
            Default Constructor.  Sets the <see cref="P:ZedGraph.PaneBase.Rect"/> to (0, 0, 500, 375), and
            sets the <see cref="P:ZedGraph.PaneBase.Title"/> and <see cref="P:ZedGraph.Axis.Title"/> values to empty
            strings.
            </summary>
        </member>
        <member name="M:ZedGraph.GraphPane.#ctor(System.Drawing.RectangleF,System.String,System.String,System.String)">
            <summary>
            Constructor for the <see cref="T:ZedGraph.GraphPane"/> object.  This routine will
            initialize all member variables and classes, setting appropriate default
            values as defined in the <see cref="T:ZedGraph.GraphPane.Default"/> class.
            </summary>
            <param name="rect"> A rectangular screen area where the graph is to be displayed.
            This area can be any size, and can be resize at any time using the
            <see cref="P:ZedGraph.PaneBase.Rect"/> property.
            </param>
            <param name="title">The <see cref="P:ZedGraph.PaneBase.Title"/> for this <see cref="T:ZedGraph.GraphPane"/></param>
            <param name="xTitle">The <see cref="P:ZedGraph.Axis.Title"/> for the <see cref="P:ZedGraph.GraphPane.XAxis"/></param>
            <param name="yTitle">The <see cref="P:ZedGraph.Axis.Title"/> for the <see cref="P:ZedGraph.GraphPane.YAxis"/></param>
        </member>
        <member name="M:ZedGraph.GraphPane.#ctor(ZedGraph.GraphPane)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The GraphPane object from which to copy</param>
        </member>
        <member name="M:ZedGraph.GraphPane.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.GraphPane.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.GraphPane.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)">
            <summary>
            AxisChange causes the axes scale ranges to be recalculated based on the current data range.
            </summary>
            <remarks>
            There is no obligation to call AxisChange() for manually scaled axes.  AxisChange() is only
            intended to handle auto scaling operations.  Call this function anytime you change, add, or
            remove curve data to insure that the scale range of the axes are appropriate for the data range.
            This method calculates
            a scale minimum, maximum, and step size for each axis based on the current curve data.
            Only the axis attributes (min, max, step) that are set to auto-range
            (<see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>, <see cref="P:ZedGraph.Scale.MajorStepAuto"/>)
            will be modified.  You must call
            <see cref="M:System.Windows.Forms.Control.Invalidate"/> after calling AxisChange to make sure the display gets updated.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
        </member>
        <member name="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)">
            <summary>
            Draw all elements in the <see cref="T:ZedGraph.GraphPane"/> to the specified graphics device.
            </summary>
            <remarks>This method
            should be part of the Paint() update process.  Calling this routine will redraw all
            features of the graph.  No preparation is required other than an instantiated
            <see cref="T:ZedGraph.GraphPane"/> object.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
        </member>
        <member name="M:ZedGraph.GraphPane.CalcChartRect(System.Drawing.Graphics)">
            <summary>
            Calculate the <see cref="P:ZedGraph.Chart.Rect"/> based on the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
            <remarks>The ChartRect
            is the plot area bounded by the axes, and the rect is the total area as
            specified by the client application.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <returns>The calculated chart rect, in pixel coordinates.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.CalcChartRect(System.Drawing.Graphics,System.Single)">
            <summary>
            Calculate the <see cref="P:ZedGraph.Chart.Rect"/> based on the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
            <remarks>The ChartRect
            is the plot area bounded by the axes, and the rect is the total area as
            specified by the client application.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.
            </param>
            <returns>The calculated chart rect, in pixel coordinates.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.SetMinSpaceBuffer(System.Drawing.Graphics,System.Single,System.Boolean)">
            <summary>
            This method will set the <see cref="P:ZedGraph.Axis.MinSpace"/> property for all three axes;
            <see cref="P:ZedGraph.GraphPane.XAxis"/>, <see cref="P:ZedGraph.GraphPane.YAxis"/>, and <see cref="P:ZedGraph.GraphPane.Y2Axis"/>.
            </summary>
            <remarks>The <see cref="P:ZedGraph.Axis.MinSpace"/>
            is calculated using the currently required space multiplied by a fraction
            (<paramref>bufferFraction</paramref>).
            The currently required space is calculated using <see cref="M:ZedGraph.Axis.CalcSpace(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Single@)"/>, and is
            based on current data ranges, font sizes, etc.  The "space" is actually the amount of space
            required to fit the tic marks, scale labels, and axis title.
            The calculation is done by calling the <see cref="M:ZedGraph.Axis.SetMinSpaceBuffer(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Boolean)"/> method for
            each <see cref="T:ZedGraph.Axis"/>.
            </remarks>
            <param name="g">A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.</param>
            <param name="bufferFraction">The amount of space to allocate for the axis, expressed
            as a fraction of the currently required space.  For example, a value of 1.2 would
            allow for 20% extra above the currently required space.</param>
            <param name="isGrowOnly">If true, then this method will only modify the <see cref="P:ZedGraph.Axis.MinSpace"/>
            property if the calculated result is more than the current value.</param>
        </member>
        <member name="M:ZedGraph.GraphPane.AddCurve(System.String,System.Double[],System.Double[],System.Drawing.Color)">
            <summary>
            Add a curve (<see cref="T:ZedGraph.CurveItem"/> object) to the plot with
            the given data points (double arrays) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="x">An array of double precision X values (the
            independent values) that define the curve.</param>
            <param name="y">An array of double precision Y values (the
            dependent values) that define the curve.</param>
            <param name="color">The color to used for the curve line,
            symbols, etc.</param>
            <returns>A <see cref="T:ZedGraph.CurveItem"/> class for the newly created curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddCurve(System.String,System.Double[],System.Double[],System.Drawing.Color)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddCurve(System.String,ZedGraph.IPointList,System.Drawing.Color)">
            <summary>
            Add a curve (<see cref="T:ZedGraph.CurveItem"/> object) to the plot with
            the given data points (<see cref="T:ZedGraph.IPointList"/>) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <param name="color">The color to used for the curve line,
            symbols, etc.</param>
            <returns>A <see cref="T:ZedGraph.CurveItem"/> class for the newly created curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddCurve(System.String,ZedGraph.IPointList,System.Drawing.Color)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddCurve(System.String,System.Double[],System.Double[],System.Drawing.Color,ZedGraph.SymbolType)">
            <summary>
            Add a curve (<see cref="T:ZedGraph.CurveItem"/> object) to the plot with
            the given data points (double arrays) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="x">An array of double precision X values (the
            independent values) that define the curve.</param>
            <param name="y">An array of double precision Y values (the
            dependent values) that define the curve.</param>
            <param name="color">The color to used for the curve line,
            symbols, etc.</param>
            <param name="symbolType">A symbol type (<see cref="T:ZedGraph.SymbolType"/>)
            that will be used for this curve.</param>
            <returns>A <see cref="T:ZedGraph.CurveItem"/> class for the newly created curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddCurve(System.String,System.Double[],System.Double[],System.Drawing.Color,ZedGraph.SymbolType)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddCurve(System.String,ZedGraph.IPointList,System.Drawing.Color,ZedGraph.SymbolType)">
            <summary>
            Add a curve (<see cref="T:ZedGraph.CurveItem"/> object) to the plot with
            the given data points (<see cref="T:ZedGraph.IPointList"/>) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <param name="color">The color to used for the curve line,
            symbols, etc.</param>
            <param name="symbolType">A symbol type (<see cref="T:ZedGraph.SymbolType"/>)
            that will be used for this curve.</param>
            <returns>A <see cref="T:ZedGraph.CurveItem"/> class for the newly created curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddCurve(System.String,ZedGraph.IPointList,System.Drawing.Color,ZedGraph.SymbolType)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddStick(System.String,System.Double[],System.Double[],System.Drawing.Color)">
            <summary>
            Add a stick graph (<see cref="T:ZedGraph.StickItem"/> object) to the plot with
            the given data points (double arrays) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="x">An array of double precision X values (the
            independent values) that define the curve.</param>
            <param name="y">An array of double precision Y values (the
            dependent values) that define the curve.</param>
            <param name="color">The color to used for the curve line,
            symbols, etc.</param>
            <returns>A <see cref="T:ZedGraph.StickItem"/> class for the newly created curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddStick(System.String,System.Double[],System.Double[],System.Drawing.Color)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddStick(System.String,ZedGraph.IPointList,System.Drawing.Color)">
            <summary>
            Add a stick graph (<see cref="T:ZedGraph.StickItem"/> object) to the plot with
            the given data points (<see cref="T:ZedGraph.IPointList"/>) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <param name="color">The color to used for the curve line,
            symbols, etc.</param>
            <returns>A <see cref="T:ZedGraph.CurveItem"/> class for the newly created curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddStick(System.String,ZedGraph.IPointList,System.Drawing.Color)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddOHLCBar(System.String,ZedGraph.IPointList,System.Drawing.Color)">
            <summary>
            Add a candlestick graph (<see cref="T:ZedGraph.OHLCBarItem"/> object) to the plot with
            the given data points (<see cref="T:ZedGraph.IPointList"/>) and properties.
            </summary>
            <remarks>
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            Note that the <see cref="T:ZedGraph.IPointList"/>
            should contain <see cref="T:ZedGraph.StockPt"/> objects instead of <see cref="T:ZedGraph.PointPair"/>
            objects in order to contain all the data values required for this curve type.
            </remarks>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <param name="color">The color to used for the curve line,
            symbols, etc.</param>
            <returns>A <see cref="T:ZedGraph.CurveItem"/> class for the newly created curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddOHLCBar(System.String,ZedGraph.IPointList,System.Drawing.Color)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddJapaneseCandleStick(System.String,ZedGraph.IPointList)">
            <summary>
            Add a japanesecandlestick graph (<see cref="T:ZedGraph.JapaneseCandleStickItem"/> object) to the plot with
            the given data points (<see cref="T:ZedGraph.IPointList"/>) and properties.
            </summary>
            <remarks>
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            Note that the <see cref="T:ZedGraph.IPointList"/>
            should contain <see cref="T:ZedGraph.StockPt"/> objects instead of <see cref="T:ZedGraph.PointPair"/>
            objects in order to contain all the data values required for this curve type.
            </remarks>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <returns>A <see cref="T:ZedGraph.CurveItem"/> class for the newly created curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddJapaneseCandleStick(System.String,ZedGraph.IPointList)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddErrorBar(System.String,System.Double[],System.Double[],System.Double[],System.Drawing.Color)">
            <summary>
            Add an error bar set (<see cref="T:ZedGraph.ErrorBarItem"/> object) to the plot with
            the given data points (<see cref="T:ZedGraph.IPointList"/>) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="x">An array of double precision X values (the
            independent values) that define the curve.</param>
            <param name="y">An array of double precision Y values (the
            dependent values) that define the curve.</param>
            <param name="baseValue">An array of double precision values that define the
            base value (the bottom) of the bars for this curve.
            </param>
            <param name="color">The color to used for the curve line,
            symbols, etc.</param>
            <returns>An <see cref="T:ZedGraph.ErrorBarItem"/> class for the newly created curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddErrorBar(System.String,ZedGraph.IPointList,System.Drawing.Color)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddErrorBar(System.String,ZedGraph.IPointList,System.Drawing.Color)">
            <summary>
            Add an error bar set (<see cref="T:ZedGraph.ErrorBarItem"/> object) to the plot with
            the given data points (<see cref="T:ZedGraph.IPointList"/>) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <param name="color">The color to used for the curve line,
            symbols, etc.</param>
            <returns>An <see cref="T:ZedGraph.ErrorBarItem"/> class for the newly created curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddErrorBar(System.String,ZedGraph.IPointList,System.Drawing.Color)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddBar(System.String,ZedGraph.IPointList,System.Drawing.Color)">
            <summary>
            Add a bar type curve (<see cref="T:ZedGraph.CurveItem"/> object) to the plot with
            the given data points (<see cref="T:ZedGraph.IPointList"/>) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <param name="color">The color to used to fill the bars</param>
            <returns>A <see cref="T:ZedGraph.CurveItem"/> class for the newly created bar curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddBar(System.String,ZedGraph.IPointList,System.Drawing.Color)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddBar(System.String,System.Double[],System.Double[],System.Drawing.Color)">
            <summary>
            Add a bar type curve (<see cref="T:ZedGraph.CurveItem"/> object) to the plot with
            the given data points (double arrays) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="x">An array of double precision X values (the
            independent values) that define the curve.</param>
            <param name="y">An array of double precision Y values (the
            dependent values) that define the curve.</param>
            <param name="color">The color to used for the bars</param>
            <returns>A <see cref="T:ZedGraph.CurveItem"/> class for the newly created bar curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddBar(System.String,System.Double[],System.Double[],System.Drawing.Color)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddHiLowBar(System.String,System.Double[],System.Double[],System.Double[],System.Drawing.Color)">
            <summary>
            Add a "High-Low" bar type curve (<see cref="T:ZedGraph.HiLowBarItem"/> object) to the plot with
            the given data points (double arrays) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="x">An array of double precision X values (the
            independent values) that define the curve.</param>
            <param name="y">An array of double precision Y values (the
            dependent values) that define the curve.</param>
            <param name="baseVal">An array of double precision values that define the
            base value (the bottom) of the bars for this curve.
            </param>
            <param name="color">The color to used for the bars</param>
            <returns>A <see cref="T:ZedGraph.HiLowBarItem"/> class for the newly created bar curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddHiLowBar(System.String,System.Double[],System.Double[],System.Double[],System.Drawing.Color)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddHiLowBar(System.String,ZedGraph.IPointList,System.Drawing.Color)">
            <summary>
            Add a hi-low bar type curve (<see cref="T:ZedGraph.CurveItem"/> object) to the plot with
            the given data points (<see cref="T:ZedGraph.IPointList"/>) and properties.
            This is simplified way to add curves without knowledge of the
            <see cref="P:ZedGraph.GraphPane.CurveList"/> class.  An alternative is to use
            the <see cref="T:ZedGraph.CurveList"/> Add() method.
            </summary>
            <param name="label">The text label (string) for the curve that will be
            used as a <see cref="T:ZedGraph.Legend"/> entry.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value Trio's that define
            the X, Y, and lower dependent values for this curve</param>
            <param name="color">The color to used to fill the bars</param>
            <returns>A <see cref="T:ZedGraph.HiLowBarItem"/> class for the newly created bar curve.
            This can then be used to access all of the curve properties that
            are not defined as arguments to the
            <see cref="M:ZedGraph.GraphPane.AddHiLowBar(System.String,ZedGraph.IPointList,System.Drawing.Color)"/> method.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddPieSlice(System.Double,System.Drawing.Color,System.Double,System.String)">
            <summary>
            Add a <see cref="T:ZedGraph.PieItem"/> to the display.
            </summary>
            <param name="value">The value associated with this <see cref="T:ZedGraph.PieItem"/>item.</param>
            <param name="color">The display color for this <see cref="T:ZedGraph.PieItem"/>item.</param>
            <param name="displacement">The amount this <see cref="T:ZedGraph.PieItem"/>item will be 
            displaced from the center of the <see cref="T:ZedGraph.PieItem"/>.</param>
            <param name="label">Text label for this <see cref="T:ZedGraph.PieItem"/></param>
            <returns>a reference to the <see cref="T:ZedGraph.PieItem"/> constructed</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddPieSlice(System.Double,System.Drawing.Color,System.Drawing.Color,System.Single,System.Double,System.String)">
            <summary>
            Add a <see cref="T:ZedGraph.PieItem"/> to the display, providing a gradient fill for the pie color.
            </summary>
            <param name="value">The value associated with this <see cref="T:ZedGraph.PieItem"/> instance.</param>
            <param name="color1">The starting display color for the gradient <see cref="T:ZedGraph.Fill"/> for this
            <see cref="T:ZedGraph.PieItem"/> instance.</param>
            <param name="color2">The ending display color for the gradient <see cref="T:ZedGraph.Fill"/> for this
            <see cref="T:ZedGraph.PieItem"/> instance.</param>
            <param name="fillAngle">The angle for the gradient <see cref="T:ZedGraph.Fill"/>.</param>
            <param name="displacement">The amount this <see cref="T:ZedGraph.PieItem"/>  instance will be 
            displaced from the center point.</param>
            <param name="label">Text label for this <see cref="T:ZedGraph.PieItem"/> instance.</param>
        </member>
        <member name="M:ZedGraph.GraphPane.AddPieSlices(System.Double[],System.String[])">
             <summary>
            Creates all the <see cref="T:ZedGraph.PieItem"/>s for a single Pie Chart. 
             </summary>
             <param name="values">double array containing all <see cref="P:ZedGraph.PieItem.Value"/>s
             for a single PieChart.
             </param>
             <param name="labels"> string array containing all <see cref="P:ZedGraph.CurveItem.Label"/>s
             for a single PieChart.
             </param>
             <returns>an array containing references to all <see cref="T:ZedGraph.PieItem"/>s comprising
             the Pie Chart.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.GeneralTransform(System.Drawing.PointF,ZedGraph.CoordType)">
            <summary>
            Transform a data point from the specified coordinate type
            (<see cref="T:ZedGraph.CoordType"/>) to screen coordinates (pixels).
            </summary>
            <remarks>This method implicitly assumes that <see cref="P:ZedGraph.Chart.Rect"/>
            has already been calculated via <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/> or
            <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/> methods, or the <see cref="P:ZedGraph.Chart.Rect"/> is
            set manually (see <see cref="P:ZedGraph.Chart.IsRectAuto"/>).</remarks>
            <param name="ptF">The X,Y pair that defines the point in user
            coordinates.</param>
            <param name="coord">A <see cref="T:ZedGraph.CoordType"/> type that defines the
            coordinate system in which the X,Y pair is defined.</param>
            <returns>A point in screen coordinates that corresponds to the
            specified user point.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.GeneralTransform(System.Double,System.Double,ZedGraph.CoordType)">
            <summary>
            Transform a data point from the specified coordinate type
            (<see cref="T:ZedGraph.CoordType"/>) to screen coordinates (pixels).
            </summary>
            <remarks>This method implicitly assumes that <see cref="P:ZedGraph.Chart.Rect"/>
            has already been calculated via <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/> or
            <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/> methods, or the <see cref="P:ZedGraph.Chart.Rect"/> is
            set manually (see <see cref="P:ZedGraph.Chart.IsRectAuto"/>).
            Note that this method is more accurate than the <see cref="M:ZedGraph.GraphPane.GeneralTransform(System.Drawing.PointF,ZedGraph.CoordType)"/>
            overload, since it uses double types.  This would typically only be significant for
            <see cref="F:ZedGraph.AxisType.Date"/> coordinates.
            </remarks>
            <param name="x">The x coordinate that defines the location in user space</param>
            <param name="y">The y coordinate that defines the location in user space</param>
            <param name="coord">A <see cref="T:ZedGraph.CoordType"/> type that defines the
            coordinate system in which the X,Y pair is defined.</param>
            <returns>A point in screen coordinates that corresponds to the
            specified user point.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.ReverseTransform(System.Drawing.PointF,System.Double@,System.Double@,System.Double@)">
            <summary>
            Return the user scale values that correspond to the specified screen
            coordinate position (pixels).
            </summary>
            <remarks>This method implicitly assumes that <see cref="P:ZedGraph.Chart.Rect"/>
            has already been calculated via <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/> or
            <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/> methods, or the <see cref="P:ZedGraph.Chart.Rect"/> is
            set manually (see <see cref="P:ZedGraph.Chart.IsRectAuto"/>).</remarks>
            <param name="ptF">The X,Y pair that defines the screen coordinate
            point of interest</param>
            <param name="x">The resultant value in user coordinates from the
            <see cref="P:ZedGraph.GraphPane.XAxis"/></param>
            <param name="y">The resultant value in user coordinates from the
            primary <see cref="P:ZedGraph.GraphPane.YAxis"/></param>
            <param name="y2">The resultant value in user coordinates from the
            primary <see cref="P:ZedGraph.GraphPane.Y2Axis"/></param>
        </member>
        <member name="M:ZedGraph.GraphPane.ReverseTransform(System.Drawing.PointF,System.Boolean,System.Int32,System.Double@,System.Double@)">
            <summary>
            Return the user scale values that correspond to the specified screen
            coordinate position (pixels).
            </summary>
            <remarks>This method implicitly assumes that <see cref="P:ZedGraph.Chart.Rect"/>
            has already been calculated via <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/> or
            <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/> methods, or the <see cref="P:ZedGraph.Chart.Rect"/> is
            set manually (see <see cref="P:ZedGraph.Chart.IsRectAuto"/>).</remarks>
            <param name="ptF">The X,Y pair that defines the screen coordinate
            point of interest</param>
            <param name="isY2Axis">true to return data that corresponds to a
            <see cref="P:ZedGraph.GraphPane.Y2Axis"/>, false for a <see cref="P:ZedGraph.GraphPane.YAxis"/>.</param>
            <param name="yAxisIndex">The ordinal index of the Y or Y2 axis from which
            to return data (see <seealso cref="P:ZedGraph.GraphPane.YAxisList"/>, <seealso cref="P:ZedGraph.GraphPane.Y2AxisList"/>)
            </param>
            <param name="x">The resultant value in user coordinates from the
            <see cref="P:ZedGraph.GraphPane.XAxis"/></param>
            <param name="y">The resultant value in user coordinates from the
            primary <see cref="P:ZedGraph.GraphPane.YAxis"/></param>
        </member>
        <member name="M:ZedGraph.GraphPane.ReverseTransform(System.Drawing.PointF,System.Double@,System.Double[]@,System.Double[]@)">
            <summary>
            Return the user scale values that correspond to the specified screen
            coordinate position (pixels) for all y axes.
            </summary>
            <remarks>This method implicitly assumes that <see cref="P:ZedGraph.Chart.Rect"/>
            has already been calculated via <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/> or
            <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/> methods, or the <see cref="P:ZedGraph.Chart.Rect"/> is
            set manually (see <see cref="P:ZedGraph.Chart.IsRectAuto"/>).</remarks>
            <param name="ptF">The X,Y pair that defines the screen coordinate
            point of interest</param>
            <param name="x">The resultant value in user coordinates from the
            <see cref="P:ZedGraph.GraphPane.XAxis"/></param>
            <param name="y">An array of resultant values in user coordinates from the
            list of <see cref="P:ZedGraph.GraphPane.YAxis"/> instances.  This method allocates the
            array for you, according to the number of <see cref="P:ZedGraph.GraphPane.YAxis"/> objects
            in the list.</param>
            <param name="y2">An array of resultant values in user coordinates from the
            list of <see cref="P:ZedGraph.GraphPane.Y2Axis"/> instances.  This method allocates the
            array for you, according to the number of <see cref="P:ZedGraph.GraphPane.Y2Axis"/> objects
            in the list.</param>
        </member>
        <member name="M:ZedGraph.GraphPane.AddYAxis(System.String)">
            <summary>
            Add a secondary <see cref="P:ZedGraph.GraphPane.YAxis"/> (left side) to the list of axes
            in the Graph.
            </summary>
            <remarks>
            Note that the primary <see cref="P:ZedGraph.GraphPane.YAxis"/> is always included by default.
            This method turns off the <see cref="T:ZedGraph.MajorTic"/> and <see cref="T:ZedGraph.MinorTic"/>
            <see cref="P:ZedGraph.MinorTic.IsOpposite"/> and <see cref="P:ZedGraph.MinorTic.IsInside"/>
            properties by default.
            </remarks>
            <param name="title">The title for the <see cref="P:ZedGraph.GraphPane.YAxis"/>.</param>
            <returns>the ordinal position (index) in the <see cref="P:ZedGraph.GraphPane.YAxisList"/>.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.AddY2Axis(System.String)">
            <summary>
            Add a secondary <see cref="P:ZedGraph.GraphPane.Y2Axis"/> (right side) to the list of axes
            in the Graph.
            </summary>
            <remarks>
            Note that the primary <see cref="P:ZedGraph.GraphPane.Y2Axis"/> is always included by default.
            This method turns off the <see cref="T:ZedGraph.MajorTic"/> and <see cref="T:ZedGraph.MinorTic"/>
            <see cref="P:ZedGraph.MinorTic.IsOpposite"/> and <see cref="P:ZedGraph.MinorTic.IsInside"/>
            properties by default.
            </remarks>
            <param name="title">The title for the <see cref="P:ZedGraph.GraphPane.Y2Axis"/>.</param>
            <returns>the ordinal position (index) in the <see cref="P:ZedGraph.GraphPane.Y2AxisList"/>.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.FindNearestObject(System.Drawing.PointF,System.Drawing.Graphics,System.Object@,System.Int32@)">
            <summary>
            Find the object that lies closest to the specified mouse (screen) point.
            </summary>
            <remarks>
            This method will search through all of the graph objects, such as
            <see cref="T:ZedGraph.Axis"/>, <see cref="T:ZedGraph.Legend"/>, <see cref="P:ZedGraph.PaneBase.Title"/>,
            <see cref="T:ZedGraph.GraphObj"/>, and <see cref="T:ZedGraph.CurveItem"/>.
            If the mouse point is within the bounding box of the items (or in the case
            of <see cref="T:ZedGraph.ArrowObj"/> and <see cref="T:ZedGraph.CurveItem"/>, within
            <see cref="F:ZedGraph.GraphPane.Default.NearestTol"/> pixels), then the object will be returned.
            You must check the type of the object to determine what object was
            selected (for example, "if ( object is Legend ) ...").  The
            <see paramref="index"/> parameter returns the index number of the item
            within the selected object (such as the point number within a
            <see cref="T:ZedGraph.CurveItem"/> object.
            </remarks>
            <param name="mousePt">The screen point, in pixel coordinates.</param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="nearestObj">A reference to the nearest object to the
            specified screen point.  This can be any of <see cref="T:ZedGraph.Axis"/>,
            <see cref="T:ZedGraph.Legend"/>, <see cref="P:ZedGraph.PaneBase.Title"/>,
            <see cref="T:ZedGraph.TextObj"/>, <see cref="T:ZedGraph.ArrowObj"/>, or <see cref="T:ZedGraph.CurveItem"/>.
            Note: If the pane title is selected, then the <see cref="T:ZedGraph.GraphPane"/> object
            will be returned.
            </param>
            <param name="index">The index number of the item within the selected object
            (where applicable).  For example, for a <see cref="T:ZedGraph.CurveItem"/> object,
            <see paramref="index"/> will be the index number of the nearest data point,
            accessible via <see cref="P:ZedGraph.CurveItem.Points">CurveItem.Points[index]</see>.
            index will be -1 if no data points are available.</param>
            <returns>true if an object was found, false otherwise.</returns>
            <seealso cref="M:ZedGraph.GraphPane.FindNearestObject(System.Drawing.PointF,System.Drawing.Graphics,System.Object@,System.Int32@)"/>
        </member>
        <member name="M:ZedGraph.GraphPane.FindNearestPoint(System.Drawing.PointF,ZedGraph.CurveItem,ZedGraph.CurveItem@,System.Int32@)">
            <summary>
            Find the data point that lies closest to the specified mouse (screen)
            point for the specified curve.
            </summary>
            <remarks>
            This method will search only through the points for the specified
            curve to determine which point is
            nearest the mouse point.  It will only consider points that are within
            <see cref="F:ZedGraph.GraphPane.Default.NearestTol"/> pixels of the screen point.
            </remarks>
            <param name="mousePt">The screen point, in pixel coordinates.</param>
            <param name="nearestCurve">A reference to the <see cref="T:ZedGraph.CurveItem"/>
            instance that contains the closest point.  nearestCurve will be null if
            no data points are available.</param>
            <param name="targetCurve">A <see cref="T:ZedGraph.CurveItem"/> object containing
            the data points to be searched.</param>
            <param name="iNearest">The index number of the closest point.  The
            actual data vpoint will then be <see cref="P:ZedGraph.CurveItem.Points">CurveItem.Points[iNearest]</see>
            .  iNearest will
            be -1 if no data points are available.</param>
            <returns>true if a point was found and that point lies within
            <see cref="F:ZedGraph.GraphPane.Default.NearestTol"/> pixels
            of the screen point, false otherwise.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.FindNearestPoint(System.Drawing.PointF,ZedGraph.CurveItem@,System.Int32@)">
            <summary>
            Find the data point that lies closest to the specified mouse (screen)
            point.
            </summary>
            <remarks>
            This method will search through all curves in
            <see cref="P:ZedGraph.GraphPane.CurveList"/> to find which point is
            nearest.  It will only consider points that are within
            <see cref="F:ZedGraph.GraphPane.Default.NearestTol"/> pixels of the screen point.
            </remarks>
            <param name="mousePt">The screen point, in pixel coordinates.</param>
            <param name="nearestCurve">A reference to the <see cref="T:ZedGraph.CurveItem"/>
            instance that contains the closest point.  nearestCurve will be null if
            no data points are available.</param>
            <param name="iNearest">The index number of the closest point.  The
            actual data vpoint will then be <see cref="P:ZedGraph.CurveItem.Points">CurveItem.Points[iNearest]</see>
            .  iNearest will
            be -1 if no data points are available.</param>
            <returns>true if a point was found and that point lies within
            <see cref="F:ZedGraph.GraphPane.Default.NearestTol"/> pixels
            of the screen point, false otherwise.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.FindNearestPoint(System.Drawing.PointF,ZedGraph.CurveList,ZedGraph.CurveItem@,System.Int32@)">
            <summary>
            Find the data point that lies closest to the specified mouse (screen)
            point.
            </summary>
            <remarks>
            This method will search through the specified list of curves to find which point is
            nearest.  It will only consider points that are within
            <see cref="F:ZedGraph.GraphPane.Default.NearestTol"/> pixels of the screen point, and it will
            only consider <see cref="T:ZedGraph.CurveItem"/>'s that are in 
            <paramref name="targetCurveList"/>.
            </remarks>
            <param name="mousePt">The screen point, in pixel coordinates.</param>
            <param name="targetCurveList">A <see cref="P:ZedGraph.GraphPane.CurveList"/> object containing
            a subset of <see cref="T:ZedGraph.CurveItem"/>'s to be searched.</param>
            <param name="nearestCurve">A reference to the <see cref="T:ZedGraph.CurveItem"/>
            instance that contains the closest point.  nearestCurve will be null if
            no data points are available.</param>
            <param name="iNearest">The index number of the closest point.  The
            actual data vpoint will then be <see cref="P:ZedGraph.CurveItem.Points">CurveItem.Points[iNearest]</see>
            .  iNearest will
            be -1 if no data points are available.</param>
            <returns>true if a point was found and that point lies within
            <see cref="F:ZedGraph.GraphPane.Default.NearestTol"/> pixels
            of the screen point, false otherwise.</returns>
        </member>
        <member name="M:ZedGraph.GraphPane.FindLinkableObject(System.Drawing.PointF,System.Drawing.Graphics,System.Single,System.Object@,ZedGraph.Link@,System.Int32@)">
            <summary>
            Search through the <see cref="T:ZedGraph.GraphObjList"/> and <see cref="P:ZedGraph.GraphPane.CurveList"/> for
            items that contain active <see cref="T:ZedGraph.Link"/> objects.
            </summary>
            <param name="mousePt">The mouse location where the click occurred</param>
            <param name="g">An appropriate <see cref="T:System.Drawing.Graphics"/> instance</param>
            <param name="scaleFactor">The current scaling factor for drawing operations.</param>
            <param name="source">The clickable object that was found.  Typically a type of
            <see cref="T:ZedGraph.GraphObj"/> or a type of <see cref="T:ZedGraph.CurveItem"/>.</param>
            <param name="link">The <see cref="T:ZedGraph.Link"/> instance that is contained within
            the <see paramref="source"/> object.</param>
            <param name="index">An index value, indicating which point was clicked for
            <see cref="T:ZedGraph.CurveItem"/> type objects.</param>
            <returns>returns true if a clickable link was found under the
            <see paramref="mousePt"/>, or false otherwise.
            </returns>
        </member>
        <member name="M:ZedGraph.GraphPane.FindContainedObjects(System.Drawing.RectangleF,System.Drawing.Graphics,ZedGraph.CurveList@)">
            <summary>
            Find any objects that exist within the specified (screen) rectangle.
            This method will search through all of the graph objects, such as
            <see cref="T:ZedGraph.Axis"/>, <see cref="T:ZedGraph.Legend"/>, <see cref="P:ZedGraph.PaneBase.Title"/>,
            <see cref="T:ZedGraph.GraphObj"/>, and <see cref="T:ZedGraph.CurveItem"/>.
            and see if the objects' bounding boxes are within the specified (screen) rectangle
            This method returns true if any are found.
            </summary>
        </member>
        <member name="P:ZedGraph.GraphPane.CurveList">
            <summary>
            Gets or sets the list of <see cref="T:ZedGraph.CurveItem"/> items for this <see cref="T:ZedGraph.GraphPane"/>
            </summary>
            <value>A reference to a <see cref="P:ZedGraph.GraphPane.CurveList"/> collection object</value>
        </member>
        <member name="P:ZedGraph.GraphPane.XAxis">
            <summary>
            Accesses the <see cref="P:ZedGraph.GraphPane.XAxis"/> for this graph
            </summary>
            <value>A reference to a <see cref="P:ZedGraph.GraphPane.XAxis"/> object</value>
        </member>
        <member name="P:ZedGraph.GraphPane.YAxis">
            <summary>
            Accesses the primary <see cref="P:ZedGraph.GraphPane.YAxis"/> for this graph
            </summary>
            <value>A reference to a <see cref="P:ZedGraph.GraphPane.YAxis"/> object</value>
            <seealso cref="P:ZedGraph.GraphPane.YAxisList"/>
            <seealso cref="P:ZedGraph.GraphPane.Y2AxisList"/>
        </member>
        <member name="P:ZedGraph.GraphPane.Y2Axis">
            <summary>
            Accesses the primary <see cref="P:ZedGraph.GraphPane.Y2Axis"/> for this graph
            </summary>
            <value>A reference to a <see cref="P:ZedGraph.GraphPane.Y2Axis"/> object</value>
            <seealso cref="P:ZedGraph.GraphPane.YAxisList"/>
            <seealso cref="P:ZedGraph.GraphPane.Y2AxisList"/>
        </member>
        <member name="P:ZedGraph.GraphPane.YAxisList">
            <summary>
            Gets the collection of Y axes that belong to this <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.GraphPane.Y2AxisList">
            <summary>
            Gets the collection of Y2 axes that belong to this <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.GraphPane.Chart">
            <summary>
            Gets the <see cref="P:ZedGraph.GraphPane.Chart"/> instance for this <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.GraphPane.BarSettings">
            <summary>
            Gets the <see cref="P:ZedGraph.GraphPane.BarSettings"/> instance for this <see cref="T:ZedGraph.GraphPane"/>,
            which stores the global properties for bar type charts.
            </summary>
        </member>
        <member name="P:ZedGraph.GraphPane.IsIgnoreInitial">
            <summary>
            Gets or sets a boolean value that affects the data range that is considered
            for the automatic scale ranging.
            </summary>
            <remarks>If true, then initial data points where the Y value
            is zero are not included when automatically determining the scale <see cref="P:ZedGraph.Scale.Min"/>,
            <see cref="P:ZedGraph.Scale.Max"/>, and <see cref="P:ZedGraph.Scale.MajorStep"/> size.
            All data after the first non-zero Y value are included.
            </remarks>
            <seealso cref="F:ZedGraph.GraphPane.Default.IsIgnoreInitial"/>
        </member>
        <member name="P:ZedGraph.GraphPane.IsBoundedRanges">
            <summary> Gets or sets a boolean value that determines if the auto-scaled axis ranges will
            subset the data points based on any manually set scale range values.</summary>
            <remarks>The bounds provide a means to subset the data.  For example, if all the axes are set to
            autoscale, then the full range of data are used.  But, if the XAxis.Min and XAxis.Max values
            are manually set, then the Y data range will reflect the Y values within the bounds of
            XAxis.Min and XAxis.Max.  Set to true to subset the data, or false to always include
            all data points when calculating scale ranges.</remarks>
        </member>
        <member name="P:ZedGraph.GraphPane.IsIgnoreMissing">
            <summary>Gets or sets a value that determines whether or not initial
            <see cref="F:ZedGraph.PointPairBase.Missing"/> values will cause the line segments of
            a curve to be discontinuous.
            </summary>
            <remarks>If this field is true, then the curves
            will be plotted as continuous lines as if the Missing values did not exist.
            Use the public property <see cref="P:ZedGraph.GraphPane.IsIgnoreMissing"/> to access
            this value. </remarks>
        </member>
        <member name="P:ZedGraph.GraphPane.IsAlignGrids">
            <summary>
            Gets or sets a value that determines if ZedGraph should modify the scale ranges
            for the Y and Y2 axes such that the number of major steps, and therefore the
            major grid lines, line up.
            </summary>
            <remarks>
            This property affects the way that <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/> selects the scale
            ranges for the Y and Y2 axes.  It applies to the scale ranges of all Y and Y2 axes,
            but only if the <see cref="P:ZedGraph.Scale.MaxAuto"/> is set to true.<br/>
            </remarks>
        </member>
        <member name="P:ZedGraph.GraphPane.LineType">
            <summary>Determines how the <see cref="T:ZedGraph.LineItem"/>
            graphs will be displayed. See the <see cref="T:ZedGraph.LineType"/> enum
            for the individual types available.
            </summary>
            <seealso cref="F:ZedGraph.GraphPane.Default.LineType"/>
        </member>
        <member name="P:ZedGraph.GraphPane.IsZoomed">
            <summary>
            Gets a value that indicates whether or not the <see cref="T:ZedGraph.ZoomStateStack"/> for
            this <see cref="T:ZedGraph.GraphPane"/> is empty.  Note that this value is only used for
            the <see cref="T:ZedGraph.ZedGraphControl"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.GraphPane.ZoomStack">
            <summary>
            Gets a reference to the <see cref="T:ZedGraph.ZoomStateStack"/> for this <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.GraphPane.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.GraphPane"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphPane.Default.IsIgnoreInitial">
            <summary>
            The default settings for the <see cref="T:ZedGraph.Axis"/> scale ignore initial
            zero values option (<see cref="P:ZedGraph.GraphPane.IsIgnoreInitial"/> property).
            true to have the auto-scale-range code ignore the initial data points
            until the first non-zero Y value, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphPane.Default.IsBoundedRanges">
            <summary>
            The default settings for the <see cref="T:ZedGraph.Axis"/> scale bounded ranges option
            (<see cref="P:ZedGraph.GraphPane.IsBoundedRanges"/> property).
            true to have the auto-scale-range code subset the data according to any
            manually set scale values, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.GraphPane.Default.LineType">
            <summary>The default value for the <see cref="P:ZedGraph.GraphPane.LineType"/> property, which
            determines if the lines are drawn in normal or "stacked" mode.  See the
            <see cref="T:ZedGraph.LineType"/> for more information.
            </summary>
            <seealso cref="P:ZedGraph.GraphPane.LineType"/>
        </member>
        <member name="F:ZedGraph.GraphPane.Default.ClusterScaleWidth">
            <summary>
            The default width of a bar cluster 
            on a <see cref="T:ZedGraph.Bar"/> graph.  This value only applies to
            <see cref="T:ZedGraph.Bar"/> graphs, and only when the
            <see cref="P:ZedGraph.Axis.Type"/> is <see cref="F:ZedGraph.AxisType.Linear"/>,
            <see cref="F:ZedGraph.AxisType.Log"/> or <see cref="F:ZedGraph.AxisType.Date"/>.
            This dimension is expressed in terms of X scale user units.
            </summary>
            <seealso cref="F:ZedGraph.BarSettings.Default.MinClusterGap"/>
            <seealso cref="P:ZedGraph.BarSettings.MinBarGap"/>
        </member>
        <member name="F:ZedGraph.GraphPane.Default.NearestTol">
            <summary>
            The tolerance that is applied to the
            <see cref="M:ZedGraph.GraphPane.FindNearestPoint(System.Drawing.PointF,ZedGraph.CurveItem@,System.Int32@)"/> routine.
            If a given curve point is within this many pixels of the mousePt, the curve
            point is considered to be close enough for selection as a nearest point
            candidate.
            </summary>
        </member>
        <member name="T:ZedGraph.CollectionPlus">
            <summary>
            A collection base class containing basic extra functionality to be inherited
            by <see cref="T:ZedGraph.CurveList"/>, <see cref="T:ZedGraph.IPointList"/>,
            <see cref="T:ZedGraph.GraphObjList"/>.
            </summary>
            <remarks>The methods in this collection operate on basic
            <see cref="T:System.Object"/> types.  Therefore, in order to make sure that
            the derived classes remain strongly-typed, there are no Add() or
            Insert() methods here, and no methods that return an object.
            Only Remove(), Move(), IndexOf(), etc. methods are included.</remarks>
            
            <author> John Champion</author>
            <version> $Revision: 3.8 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="M:ZedGraph.CollectionPlus.#ctor">
            <summary>
            Default Constructor
            </summary>
        </member>
        <member name="M:ZedGraph.CollectionPlus.IndexOf(System.Object)">
            <summary>
            Return the zero-based position index of the specified object
            in the collection.
            </summary>
            <param name="item">A reference to the object that is to be found.
            </param>
            <returns>The zero-based index of the specified object, or -1 if the
            object is not in the list</returns>
            <seealso cref="M:System.Collections.IList.IndexOf(System.Object)"/>
        </member>
        <member name="M:ZedGraph.CollectionPlus.Remove(System.Int32)">
            <summary>
            Remove an object from the collection at the specified ordinal location.
            </summary>
            <param name="index">
            An ordinal position in the list at which the object to be removed 
            is located.
            </param>
            <seealso cref="M:System.Collections.IList.Remove(System.Object)"/>
        </member>
        <member name="M:ZedGraph.CollectionPlus.Remove(System.Object)">
            <summary>
            Remove an object from the collection based on an object reference.
            </summary>
            <param name="item">A reference to the object that is to be
            removed.</param>
            <seealso cref="M:System.Collections.IList.Remove(System.Object)"/>
        </member>
        <member name="M:ZedGraph.CollectionPlus.Move(System.Int32,System.Int32)">
            <summary>
            Move the position of the object at the specified index
            to the new relative position in the list.</summary>
            <remarks>For Graphic type objects, this method controls the
            Z-Order of the items.  Objects at the beginning of the list
            appear in front of objects at the end of the list.</remarks>
            <param name="index">The zero-based index of the object
            to be moved.</param>
            <param name="relativePos">The relative number of positions to move
            the object.  A value of -1 will move the
            object one position earlier in the list, a value
            of 1 will move it one position later.  To move an item to the
            beginning of the list, use a large negative value (such as -999).
            To move it to the end of the list, use a large positive value.
            </param>
            <returns>The new position for the object, or -1 if the object
            was not found.</returns>
        </member>
        <member name="T:ZedGraph.XDate">
            <summary>
            This struct encapsulates a date and time value, and handles associated
            calculations and conversions between various formats.
            </summary>
            <remarks>
            This format stored as a double value representing days since a reference date
            (XL date 0.0 is December 30, 1899 at 00:00 hrs).
            Negative values are permissible, and the
            range of valid dates is from noon on January 1st, 4713 B.C. forward.  Internally, the
            date calculations are done using Astronomical Julian Day numbers.  The Astronomical Julian
            Day number is defined as the number of days since noon on January 1st, 4713 B.C.
            (also referred to as 12:00 on January 1, -4712).
            NOTE: MS Excel actually has an error in the Serial Date calculations because it
            errantly assumes 1900 is a leap year.  The XDate calculations do not have this same
            error.  Therefore, XDate and Excel Date Serial values are 1 day different up until
            the date value of 60 (in Excel, this is February 29th, 1900, and in XDate, this is
            February 28th, 1900).  At a value of 61 (March 1st, 1900) or greater, they agree with
            eachother.
            </remarks>
            <author> John Champion </author>
            <version> $Revision: 3.20 $ $Date: 2007/03/11 02:08:16 $ </version>
        </member>
        <member name="F:ZedGraph.XDate.XLDay1">
            <summary>
            The Astronomical Julian Day number that corresponds to XL Date 0.0
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.JulDayMin">
            <summary>
            The minimum valid Julian Day, which corresponds to January 1st, 4713 B.C.
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.JulDayMax">
            <summary>
            The maximum valid Julian Day, which corresponds to December 31st, 9999 A.D.
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.XLDayMin">
            <summary>
            The minimum valid Excel Day, which corresponds to January 1st, 4713 B.C.
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.XLDayMax">
            <summary>
            The maximum valid Excel Day, which corresponds to December 31st, 9999 A.D.
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.MonthsPerYear">
            <summary>
            The number of months in a year
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.HoursPerDay">
            <summary>
            The number of hours in a day
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.MinutesPerHour">
            <summary>
            The number of minutes in an hour
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.SecondsPerMinute">
            <summary>
            The number of seconds in a minute
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.MinutesPerDay">
            <summary>
            The number of minutes in a day
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.SecondsPerDay">
            <summary>
            The number of seconds in a day
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.MillisecondsPerSecond">
            <summary>
            The number of milliseconds in a second
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.MillisecondsPerDay">
            <summary>
            The number of milliseconds in a day
            </summary>
        </member>
        <member name="F:ZedGraph.XDate.DefaultFormatStr">
            <summary>
            The default format string to be used in <see cref="M:ZedGraph.XDate.ToString"/> when
            no format is provided
            </summary>
        </member>
        <member name="F:ZedGraph.XDate._xlDate">
            <summary>
            The actual date value in MS Excel format.  This is the only data field in
            the <see cref="T:ZedGraph.XDate"/> struct.
            </summary>
        </member>
        <member name="M:ZedGraph.XDate.#ctor(System.Double)">
            <summary>
            Construct a date class from an XL date value.
            </summary>
            <param name="xlDate">
            An XL Date value in floating point double format
            </param>
        </member>
        <member name="M:ZedGraph.XDate.#ctor(System.DateTime)">
            <summary>
            Construct a date class from a <see cref="P:ZedGraph.XDate.DateTime"/> struct.
            </summary>
            <param name="dateTime">
            A <see cref="P:ZedGraph.XDate.DateTime"/> struct containing the initial date information.
            </param>
        </member>
        <member name="M:ZedGraph.XDate.#ctor(System.Int32,System.Int32,System.Int32)">
            <summary>
            Construct a date class from a calendar date (year, month, day).  Assumes the time
            of day is 00:00 hrs
            </summary>
            <param name="year">An integer value for the year, e.g., 1995.</param>
            <param name="day">An integer value for the day of the month, e.g., 23.
            It is permissible to have day numbers outside of the 1-31 range,
            which will rollover to the previous or next month and year.</param>
            <param name="month">An integer value for the month of the year, e.g.,
            8 for August.  It is permissible to have months outside of the 1-12 range,
            which will rollover to the previous or next year.</param>
        </member>
        <member name="M:ZedGraph.XDate.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Construct a date class from a calendar date and time (year, month, day, hour, minute,
            second). 
            </summary>
            <param name="year">An integer value for the year, e.g., 1995.</param>
            <param name="day">An integer value for the day of the month, e.g., 23.
            It is permissible to have day numbers outside of the 1-31 range,
            which will rollover to the previous or next month and year.</param>
            <param name="month">An integer value for the month of the year, e.g.,
            8 for August.  It is permissible to have months outside of the 1-12 range,
            which will rollover to the previous or next year.</param>
            <param name="hour">An integer value for the hour of the day, e.g. 15.
            It is permissible to have hour values outside the 0-23 range, which
            will rollover to the previous or next day.</param>
            <param name="minute">An integer value for the minute, e.g. 45.
            It is permissible to have hour values outside the 0-59 range, which
            will rollover to the previous or next hour.</param>
            <param name="second">An integer value for the second, e.g. 35.
            It is permissible to have second values outside the 0-59 range, which
            will rollover to the previous or next minute.</param>
        </member>
        <member name="M:ZedGraph.XDate.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Double)">
            <summary>
            Construct a date class from a calendar date and time (year, month, day, hour, minute,
            second), where seconds is a <see cref="T:System.Double"/> value (allowing fractional seconds). 
            </summary>
            <param name="year">An integer value for the year, e.g., 1995.</param>
            <param name="day">An integer value for the day of the month, e.g., 23.
            It is permissible to have day numbers outside of the 1-31 range,
            which will rollover to the previous or next month and year.</param>
            <param name="month">An integer value for the month of the year, e.g.,
            8 for August.  It is permissible to have months outside of the 1-12 range,
            which will rollover to the previous or next year.</param>
            <param name="hour">An integer value for the hour of the day, e.g. 15.
            It is permissible to have hour values outside the 0-23 range, which
            will rollover to the previous or next day.</param>
            <param name="minute">An integer value for the minute, e.g. 45.
            It is permissible to have hour values outside the 0-59 range, which
            will rollover to the previous or next hour.</param>
            <param name="second">A double value for the second, e.g. 35.75.
            It is permissible to have second values outside the 0-59 range, which
            will rollover to the previous or next minute.</param>
        </member>
        <member name="M:ZedGraph.XDate.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Construct a date class from a calendar date and time (year, month, day, hour, minute,
            second, millisecond). 
            </summary>
            <param name="year">An integer value for the year, e.g., 1995.</param>
            <param name="day">An integer value for the day of the month, e.g., 23.
            It is permissible to have day numbers outside of the 1-31 range,
            which will rollover to the previous or next month and year.</param>
            <param name="month">An integer value for the month of the year, e.g.,
            8 for August.  It is permissible to have months outside of the 1-12 range,
            which will rollover to the previous or next year.</param>
            <param name="hour">An integer value for the hour of the day, e.g. 15.
            It is permissible to have hour values outside the 0-23 range, which
            will rollover to the previous or next day.</param>
            <param name="minute">An integer value for the minute, e.g. 45.
            It is permissible to have hour values outside the 0-59 range, which
            will rollover to the previous or next hour.</param>
            <param name="second">An integer value for the second, e.g. 35.
            It is permissible to have second values outside the 0-59 range, which
            will rollover to the previous or next minute.</param>
            <param name="millisecond">An integer value for the millisecond, e.g. 632.
            It is permissible to have millisecond values outside the 0-999 range, which
            will rollover to the previous or next second.</param>
        </member>
        <member name="M:ZedGraph.XDate.#ctor(ZedGraph.XDate)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The GraphPane object from which to copy</param>
        </member>
        <member name="M:ZedGraph.XDate.CheckValidDate(System.Double)">
            <summary>
            Returns true if the specified date value is in the valid range
            </summary>
            <param name="xlDate">The XL date value to be verified for validity</param>
            <returns>true for a valid date, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.XDate.MakeValidDate(System.Double)">
            <summary>
            Take the specified date, and bound it to the valid date range for the XDate struct.
            </summary>
            <param name="xlDate">The date to be bounded</param>
            <returns>An XLDate value that lies between the minimum and maximum valid date ranges
            (see <see cref="F:ZedGraph.XDate.XLDayMin"/> and <see cref="F:ZedGraph.XDate.XLDayMax"/>)</returns>
        </member>
        <member name="M:ZedGraph.XDate.GetDate(System.Int32@,System.Int32@,System.Int32@)">
            <summary>
            Get the calendar date (year, month, day) corresponding to this instance.
            </summary>
            <param name="year">An integer value for the year, e.g., 1995.</param>
            <param name="day">An integer value for the day of the month, e.g., 23.</param>
            <param name="month">An integer value for the month of the year, e.g.,
            8 for August.</param>
        </member>
        <member name="M:ZedGraph.XDate.SetDate(System.Int32,System.Int32,System.Int32)">
            <summary>
            Set the calendar date (year, month, day) of this instance.
            </summary>
            <param name="year">An integer value for the year, e.g., 1995.</param>
            <param name="day">An integer value for the day of the month, e.g., 23.</param>
            <param name="month">An integer value for the month of the year, e.g.,
            8 for August.</param>
        </member>
        <member name="M:ZedGraph.XDate.GetDate(System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@)">
            <summary>
            Get the calendar date (year, month, day, hour, minute, second) corresponding
            to this instance.
            </summary>
            <param name="year">An integer value for the year, e.g., 1995.</param>
            <param name="day">An integer value for the day of the month, e.g., 23.</param>
            <param name="month">An integer value for the month of the year, e.g.,
            8 for August.</param>
            <param name="hour">An integer value for the hour of the day, e.g. 15.</param>
            <param name="minute">An integer value for the minute, e.g. 45.</param>
            <param name="second">An integer value for the second, e.g. 35.</param>
        </member>
        <member name="M:ZedGraph.XDate.SetDate(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Set the calendar date (year, month, day, hour, minute, second) of this instance.
            </summary>
            <param name="year">An integer value for the year, e.g., 1995.</param>
            <param name="day">An integer value for the day of the month, e.g., 23.</param>
            <param name="month">An integer value for the month of the year, e.g.,
            8 for August.</param>
            <param name="hour">An integer value for the hour of the day, e.g. 15.</param>
            <param name="minute">An integer value for the minute, e.g. 45.</param>
            <param name="second">An integer value for the second, e.g. 35.</param>
        </member>
        <member name="M:ZedGraph.XDate.GetDayOfYear">
            <summary>
            Get the day of year value (241.345 means the 241st day of the year)
            corresponding to this instance.
            </summary>
            <returns>The day of the year in floating point double format.</returns>
        </member>
        <member name="M:ZedGraph.XDate.CalendarDateToXLDate(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Calculate an XL Date from the specified Calendar date (year, month, day, hour, minute, second),
            first normalizing all input data values.
            </summary>
            <remarks>
            The Calendar date is always based on the Gregorian Calendar.  Note that the Gregorian calendar is really
            only valid from October 15, 1582 forward.  The countries that adopted the Gregorian calendar
            first did so on October 4, 1582, so that the next day was October 15, 1582.  Prior to that time
            the Julian Calendar was used.  However, Prior to March 1, 4 AD the treatment of leap years was
            inconsistent, and prior to 45 BC the Julian Calendar did not exist.  The <see cref="T:ZedGraph.XDate"/>
            struct projects only Gregorian dates backwards and does not deal with Julian calendar dates at all.  The
            <see cref="M:ZedGraph.XDate.ToString(System.Double,System.String)"/> method will just append a "(BC)" notation to the end of any dates
            prior to 1 AD, since the <see cref="P:ZedGraph.XDate.DateTime"/> struct throws an exception when formatting earlier dates.
            </remarks>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The integer second value (e.g., 42 for 42 seconds past the minute).
            </param>
            <param name="millisecond">
            The integer millisecond value (e.g., 374 for 374 milliseconds past the second).
            </param>
            <returns>The corresponding XL date, expressed in double floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.CalendarDateToXLDate(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Calculate an XL Date from the specified Calendar date (year, month, day, hour, minute, second),
            first normalizing all input data values.
            </summary>
            <remarks>
            The Calendar date is always based on the Gregorian Calendar.  Note that the Gregorian calendar is really
            only valid from October 15, 1582 forward.  The countries that adopted the Gregorian calendar
            first did so on October 4, 1582, so that the next day was October 15, 1582.  Prior to that time
            the Julian Calendar was used.  However, Prior to March 1, 4 AD the treatment of leap years was
            inconsistent, and prior to 45 BC the Julian Calendar did not exist.  The <see cref="T:ZedGraph.XDate"/>
            struct projects only Gregorian dates backwards and does not deal with Julian calendar dates at all.  The
            <see cref="M:ZedGraph.XDate.ToString(System.Double,System.String)"/> method will just append a "(BC)" notation to the end of any dates
            prior to 1 AD, since the <see cref="P:ZedGraph.XDate.DateTime"/> struct throws an exception when formatting earlier dates.
            </remarks>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The integer second value (e.g., 42 for 42 seconds past the minute).
            </param>
            <returns>The corresponding XL date, expressed in double floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.CalendarDateToXLDate(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Double)">
            <summary>
            Calculate an XL Date from the specified Calendar date (year, month, day, hour, minute, second),
            first normalizing all input data values.  The seconds value is a double type, allowing fractional
            seconds.
            </summary>
            <remarks>
            The Calendar date is always based on the Gregorian Calendar.  Note that the Gregorian calendar is really
            only valid from October 15, 1582 forward.  The countries that adopted the Gregorian calendar
            first did so on October 4, 1582, so that the next day was October 15, 1582.  Prior to that time
            the Julian Calendar was used.  However, Prior to March 1, 4 AD the treatment of leap years was
            inconsistent, and prior to 45 BC the Julian Calendar did not exist.  The <see cref="T:ZedGraph.XDate"/>
            struct projects only Gregorian dates backwards and does not deal with Julian calendar dates at all.  The
            <see cref="M:ZedGraph.XDate.ToString(System.Double,System.String)"/> method will just append a "(BC)" notation to the end of any dates
            prior to 1 AD, since the <see cref="P:ZedGraph.XDate.DateTime"/> struct throws an exception when formatting earlier dates.
            </remarks>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The double second value (e.g., 42.3 for 42.3 seconds past the minute).
            </param>
            <returns>The corresponding XL date, expressed in double floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.CalendarDateToJulianDay(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Calculate an Astronomical Julian Day number from the specified Calendar date
            (year, month, day, hour, minute, second), first normalizing all input data values
            </summary>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The integer second value (e.g., 42 for 42 seconds past the minute).
            </param>
            <returns>The corresponding Astronomical Julian Day number, expressed in double
            floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.CalendarDateToJulianDay(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Calculate an Astronomical Julian Day number from the specified Calendar date
            (year, month, day, hour, minute, second), first normalizing all input data values
            </summary>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The integer second value (e.g., 42 for 42 seconds past the minute).
            </param>
            <param name="millisecond">
            The integer second value (e.g., 325 for 325 milliseconds past the minute).
            </param>
            <returns>The corresponding Astronomical Julian Day number, expressed in double
            floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.NormalizeCalendarDate(System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Double@)">
            <summary>
            Normalize a set of Calendar date values (year, month, day, hour, minute, second) to make sure
            that month is between 1 and 12, hour is between 0 and 23, etc.
            </summary>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The integer second value (e.g., 42 for 42 seconds past the minute).
            </param>
            <param name="millisecond">
            The double millisecond value (e.g., 325.3 for 325.3 milliseconds past the second).
            </param>
        </member>
        <member name="M:ZedGraph.XDate._CalendarDateToXLDate(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Double)">
            <summary>
            Calculate an XL date from the specified Calendar date (year, month, day, hour, minute, second).
            This is the internal trusted version, where all values are assumed to be legitimate
            ( month is between 1 and 12, minute is between 0 and 59, etc. )
            </summary>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The integer second value (e.g., 42 for 42 seconds past the minute).
            </param>
            <param name="millisecond">
            The double millisecond value (e.g., 325.3 for 325.3 milliseconds past the second).
            </param>
            <returns>The corresponding XL date, expressed in double floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate._CalendarDateToJulianDay(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Double)">
            <summary>
            Calculate an Astronomical Julian Day Number from the specified Calendar date
            (year, month, day, hour, minute, second).
            This is the internal trusted version, where all values are assumed to be legitimate
            ( month is between 1 and 12, minute is between 0 and 59, etc. )
            </summary>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The integer second value (e.g., 42 for 42 seconds past the minute).
            </param>
            <param name="millisecond">
            The double millisecond value (e.g., 325.3 for 325.3 milliseconds past the second).
            </param>
            <returns>The corresponding Astronomical Julian Day number, expressed in double
            floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.XLDateToCalendarDate(System.Double,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@)">
            <summary>
            Calculate a Calendar date (year, month, day, hour, minute, second) corresponding to
            the specified XL date
            </summary>
            <param name="xlDate">
            The XL date value in floating point double format.
            </param>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The integer second value (e.g., 42 for 42 seconds past the minute).
            </param>
        </member>
        <member name="M:ZedGraph.XDate.XLDateToCalendarDate(System.Double,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@)">
            <summary>
            Calculate a Calendar date (year, month, day, hour, minute, second) corresponding to
            the specified XL date
            </summary>
            <param name="xlDate">
            The XL date value in floating point double format.
            </param>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The integer second value (e.g., 42 for 42 seconds past the minute).
            </param>
            <param name="millisecond">
            The integer millisecond value (e.g., 325 for 325 milliseconds past the second).
            </param>
        </member>
        <member name="M:ZedGraph.XDate.XLDateToCalendarDate(System.Double,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Double@)">
            <summary>
            Calculate a Calendar date (year, month, day, hour, minute, second) corresponding to
            the specified XL date
            </summary>
            <param name="xlDate">
            The XL date value in floating point double format.
            </param>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The double second value (e.g., 42.3 for 42.3 seconds past the minute).
            </param>
        </member>
        <member name="M:ZedGraph.XDate.JulianDayToCalendarDate(System.Double,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@)">
            <summary>
            Calculate a Calendar date (year, month, day, hour, minute, second) corresponding to
            the Astronomical Julian Day number
            </summary>
            <param name="jDay">
            The Astronomical Julian Day number to be converted
            </param>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The integer second value (e.g., 42 for 42 seconds past the minute).
            </param>
        </member>
        <member name="M:ZedGraph.XDate.JulianDayToCalendarDate(System.Double,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Double@)">
            <summary>
            Calculate a Calendar date (year, month, day, hour, minute, second) corresponding to
            the Astronomical Julian Day number
            </summary>
            <param name="jDay">
            The Astronomical Julian Day number to be converted
            </param>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The double second value (e.g., 42.3 for 42.3 seconds past the minute).
            </param>
        </member>
        <member name="M:ZedGraph.XDate.JulianDayToCalendarDate(System.Double,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Double@)">
            <summary>
            Calculate a Calendar date (year, month, day, hour, minute, second) corresponding to
            the Astronomical Julian Day number
            </summary>
            <param name="jDay">
            The Astronomical Julian Day number to be converted
            </param>
            <param name="year">
            The integer year value (e.g., 1994).
            </param>
            <param name="month">
            The integer month value (e.g., 7 for July).
            </param>
            <param name="day">
            The integer day value (e.g., 19 for the 19th day of the month).
            </param>
            <param name="hour">
            The integer hour value (e.g., 14 for 2:00 pm).
            </param>
            <param name="minute">
            The integer minute value (e.g., 35 for 35 minutes past the hour).
            </param>
            <param name="second">
            The integer second value (e.g., 42 for 42 seconds past the minute).
            </param>
            <param name="millisecond">
            The <see cref="T:System.Double"/> millisecond value (e.g., 342.5 for 342.5 milliseconds past
            the second).
            </param>
        </member>
        <member name="M:ZedGraph.XDate.XLDateToJulianDay(System.Double)">
            <summary>
            Calculate an Astronomical Julian Day number corresponding to the specified XL date
            </summary>
            <param name="xlDate">
            The XL date value in floating point double format.
            </param>
            <returns>The corresponding Astronomical Julian Day number, expressed in double
            floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.JulianDayToXLDate(System.Double)">
            <summary>
            Calculate an XL Date corresponding to the specified Astronomical Julian Day number
            </summary>
            <param name="jDay">
            The Astronomical Julian Day number in floating point double format.
            </param>
            <returns>The corresponding XL Date, expressed in double
            floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.XLDateToDecimalYear(System.Double)">
            <summary>
            Calculate a decimal year value (e.g., 1994.6523) corresponding to the specified XL date
            </summary>
            <param name="xlDate">
            The XL date value in floating point double format.
            </param>
            <returns>The corresponding decimal year value, expressed in double
            floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.DecimalYearToXLDate(System.Double)">
            <summary>
            Calculate a decimal year value (e.g., 1994.6523) corresponding to the specified XL date
            </summary>
            <param name="yearDec">
            The decimal year value in floating point double format.
            </param>
            <returns>The corresponding XL Date, expressed in double
            floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.XLDateToDayOfYear(System.Double)">
            <summary>
            Calculate a day-of-year value (e.g., 241.543 corresponds to the 241st day of the year)
            corresponding to the specified XL date
            </summary>
            <param name="xlDate">
            The XL date value in floating point double format.
            </param>
            <returns>The corresponding day-of-year (DoY) value, expressed in double
            floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.XLDateToDayOfWeek(System.Double)">
            <summary>
            Calculate a day-of-week value (e.g., Sun=0, Mon=1, Tue=2, etc.)
            corresponding to the specified XL date
            </summary>
            <param name="xlDate">
            The XL date value in floating point double format.
            </param>
            <returns>The corresponding day-of-week (DoW) value, expressed in integer format</returns>
        </member>
        <member name="M:ZedGraph.XDate.XLDateToDateTime(System.Double)">
            <summary>
            Convert an XL date format to a .Net DateTime struct
            </summary>
            <param name="xlDate">
            The XL date value in floating point double format.
            </param>
            <returns>The corresponding XL Date, expressed in double
            floating point format</returns>
            <returns>The corresponding date in the form of a .Net DateTime struct</returns>
        </member>
        <member name="M:ZedGraph.XDate.DateTimeToXLDate(System.DateTime)">
            <summary>
            Convert a .Net DateTime struct to an XL Format date
            </summary>
            <param name="dt">
            The date value in the form of a .Net DateTime struct
            </param>
            <returns>The corresponding XL Date, expressed in double
            floating point format</returns>
        </member>
        <member name="M:ZedGraph.XDate.AddMilliseconds(System.Double)">
            <summary>
            Add the specified number of milliseconds (can be fractional) to the current XDate instance.
            </summary>
            <param name="dMilliseconds">
            The incremental number of milliseconds (negative or positive) in floating point double format.
            </param>
        </member>
        <member name="M:ZedGraph.XDate.AddSeconds(System.Double)">
            <summary>
            Add the specified number of seconds (can be fractional) to the current XDate instance.
            </summary>
            <param name="dSeconds">
            The incremental number of seconds (negative or positive) in floating point double format.
            </param>
        </member>
        <member name="M:ZedGraph.XDate.AddMinutes(System.Double)">
            <summary>
            Add the specified number of minutes (can be fractional) to the current XDate instance.
            </summary>
            <param name="dMinutes">
            The incremental number of minutes (negative or positive) in floating point double format.
            </param>
        </member>
        <member name="M:ZedGraph.XDate.AddHours(System.Double)">
            <summary>
            Add the specified number of hours (can be fractional) to the current XDate instance.
            </summary>
            <param name="dHours">
            The incremental number of hours (negative or positive) in floating point double format.
            </param>
        </member>
        <member name="M:ZedGraph.XDate.AddDays(System.Double)">
            <summary>
            Add the specified number of days (can be fractional) to the current XDate instance.
            </summary>
            <param name="dDays">
            The incremental number of days (negative or positive) in floating point double format.
            </param>
        </member>
        <member name="M:ZedGraph.XDate.AddMonths(System.Double)">
            <summary>
            Add the specified number of Months (can be fractional) to the current XDate instance.
            </summary>
            <param name="dMonths">
            The incremental number of months (negative or positive) in floating point double format.
            </param>
        </member>
        <member name="M:ZedGraph.XDate.AddYears(System.Double)">
            <summary>
            Add the specified number of years (can be fractional) to the current XDate instance.
            </summary>
            <param name="dYears">
            The incremental number of years (negative or positive) in floating point double format.
            </param>
        </member>
        <member name="M:ZedGraph.XDate.op_Subtraction(ZedGraph.XDate,ZedGraph.XDate)">
            <summary>
            '-' operator overload.  When two XDates are subtracted, the number of days between dates
            is returned.
            </summary>
            <param name="lhs">The left-hand-side of the '-' operator (an XDate class)</param>
            <param name="rhs">The right-hand-side of the '-' operator (an XDate class)</param>
            <returns>The days between dates, expressed as a floating point double</returns>
        </member>
        <member name="M:ZedGraph.XDate.op_Subtraction(ZedGraph.XDate,System.Double)">
            <summary>
            '-' operator overload.  When a double value is subtracted from an XDate, the result is a
            new XDate with the number of days subtracted.
            </summary>
            <param name="lhs">The left-hand-side of the '-' operator (an XDate class)</param>
            <param name="rhs">The right-hand-side of the '-' operator (a double value)</param>
            <returns>An XDate with the rhs number of days subtracted</returns>
        </member>
        <member name="M:ZedGraph.XDate.op_Addition(ZedGraph.XDate,System.Double)">
            <summary>
            '+' operator overload.  When a double value is added to an XDate, the result is a
            new XDate with the number of days added.
            </summary>
            <param name="lhs">The left-hand-side of the '-' operator (an XDate class)</param>
            <param name="rhs">The right-hand-side of the '+' operator (a double value)</param>
            <returns>An XDate with the rhs number of days added</returns>
        </member>
        <member name="M:ZedGraph.XDate.op_Increment(ZedGraph.XDate)">
            <summary>
            '++' operator overload.  Increment the date by one day.
            </summary>
            <param name="xDate">The XDate struct on which to operate</param>
            <returns>An XDate one day later than the specified date</returns>
        </member>
        <member name="M:ZedGraph.XDate.op_Decrement(ZedGraph.XDate)">
            <summary>
            '--' operator overload.  Decrement the date by one day.
            </summary>
            <param name="xDate">The XDate struct on which to operate</param>
            <returns>An XDate one day prior to the specified date</returns>
        </member>
        <member name="M:ZedGraph.XDate.op_Implicit(ZedGraph.XDate)~System.Double">
            <summary>
            Implicit conversion from XDate to double (an XL Date).
            </summary>
            <param name="xDate">The XDate struct on which to operate</param>
            <returns>A double floating point value representing the XL Date</returns>
        </member>
        <member name="M:ZedGraph.XDate.op_Implicit(ZedGraph.XDate)~System.Single">
            <summary>
            Implicit conversion from XDate to float (an XL Date).
            </summary>
            <param name="xDate">The XDate struct on which to operate</param>
            <returns>A double floating point value representing the XL Date</returns>
        </member>
        <member name="M:ZedGraph.XDate.op_Implicit(System.Double)~ZedGraph.XDate">
            <summary>
            Implicit conversion from double (an XL Date) to XDate.
            </summary>
            <param name="xlDate">The XDate struct on which to operate</param>
            <returns>An XDate struct representing the specified xlDate value.</returns>
        </member>
        <member name="M:ZedGraph.XDate.op_Implicit(ZedGraph.XDate)~System.DateTime">
            <summary>
            Implicit conversion from XDate to <see cref="P:ZedGraph.XDate.DateTime"/>.
            </summary>
            <param name="xDate">The XDate struct on which to operate</param>
            <returns>A <see cref="P:ZedGraph.XDate.DateTime"/> struct representing the specified xDate value.</returns>
        </member>
        <member name="M:ZedGraph.XDate.op_Implicit(System.DateTime)~ZedGraph.XDate">
            <summary>
            Implicit conversion from <see cref="P:ZedGraph.XDate.DateTime"/> to <see cref="T:ZedGraph.XDate"/>.
            </summary>
            <param name="dt">The <see cref="P:ZedGraph.XDate.DateTime"/> struct on which to operate</param>
            <returns>An <see cref="T:ZedGraph.XDate"/> struct representing the specified DateTime value.</returns>
        </member>
        <member name="M:ZedGraph.XDate.Equals(System.Object)">
            <summary>
            Tests whether <param>obj</param> is either an <see cref="T:ZedGraph.XDate"/> structure or
            a double floating point value that is equal to the same date as this <c>XDate</c>
            struct instance.
            </summary>
            <param name="obj">The object to compare for equality with this XDate instance.
            This object should be either a type XDate or type double.</param>
            <returns>Returns <c>true</c> if <param>obj</param> is the same date as this
            instance; otherwise, <c>false</c></returns>
        </member>
        <member name="M:ZedGraph.XDate.GetHashCode">
            <summary>
            Returns the hash code for this <see cref="T:ZedGraph.XDate"/> structure.  In this case, the
            hash code is simply the equivalent hash code for the floating point double date value.
            </summary>
            <returns>An integer representing the hash code for this XDate value</returns>
        </member>
        <member name="M:ZedGraph.XDate.ToString(System.Double)">
            <summary>
            Format this XDate value using the default format string (<see cref="F:ZedGraph.XDate.DefaultFormatStr"/>).
            </summary>
            <remarks>
            The formatting is done using the <see cref="P:ZedGraph.XDate.DateTime"/> <see cref="M:System.DateTime.ToString(System.String)"/>
            method in order to provide full localization capability.  The DateTime struct is limited to
            dates from 1 AD onward.  However, all calendar dates in <see cref="T:ZedGraph.XDate"/> and <see cref="P:ZedGraph.XDate.DateTime"/>
            are projected Gregorian calendar dates.  Since the Gregorian calendar was not implemented
            until October 4, 1582 (or later in some countries), Gregorian dates prior to that time are
            really dates that would have been, had the Gregorian calendar existed.  In order to avoid
            throwing an exception, for dates prior to 1 AD, the year will be converted to a positive
            year and the text "(BC)" is appended to the end of the formatted string.  Under this mode, the
            year sequence is 2BC, 1BC, 1AD, 2AD, etc.  There is no year zero.
            </remarks>
            <param name="xlDate">
            The XL date value to be formatted in floating point double format.
            </param>
            <returns>A string representation of the date</returns>
        </member>
        <member name="M:ZedGraph.XDate.ToString">
            <summary>
            Format this XDate value using the default format string (see cref="DefaultFormatStr"/&gt;).
            </summary>
            <remarks>
            The formatting is done using the <see cref="P:ZedGraph.XDate.DateTime"/>
            <see cref="M:System.DateTime.ToString(System.String)"/>
            method in order to provide full localization capability.  The DateTime struct is limited to
            dates from 1 AD onward.  However, all calendar dates in <see cref="T:ZedGraph.XDate"/> and
            <see cref="P:ZedGraph.XDate.DateTime"/>
            are projected Gregorian calendar dates.  Since the Gregorian calendar was not implemented
            until October 4, 1582 (or later in some countries), Gregorian dates prior to that time are
            really dates that would have been, had the Gregorian calendar existed.  In order to avoid
            throwing an exception, for dates prior to 1 AD, the year will be converted to a positive
            year and the text "(BC)" is appended to the end of the formatted string.  Under this mode, the
            year sequence is 2BC, 1BC, 1AD, 2AD, etc.  There is no year zero.
            </remarks>
            <returns>A string representation of the date</returns>
        </member>
        <member name="M:ZedGraph.XDate.ToString(System.String)">
            <summary>
            Format this XL Date value using the specified format string.  The format
            string is specified according to the <see cref="P:ZedGraph.XDate.DateTime"/> class.
            </summary>
            <remarks>
            The formatting is done using the <see cref="P:ZedGraph.XDate.DateTime"/>
            <see cref="M:System.DateTime.ToString(System.String)"/>
            method in order to provide full localization capability.  The DateTime struct is limited to
            dates from 1 AD onward.  However, all calendar dates in <see cref="T:ZedGraph.XDate"/> and
            <see cref="P:ZedGraph.XDate.DateTime"/>
            are projected Gregorian calendar dates.  Since the Gregorian calendar was not implemented
            until October 4, 1582 (or later in some countries), Gregorian dates prior to that time are
            really dates that would have been, had the Gregorian calendar existed.  In order to avoid
            throwing an exception, for dates prior to 1 AD, the year will be converted to a positive
            year and the text "(BC)" is appended to the end of the formatted string.  Under this mode, the
            year sequence is 2BC, 1BC, 1AD, 2AD, etc.  There is no year zero.
            </remarks>
            <param name="fmtStr">
            The formatting string to be used for the date.  See
            <see cref="T:System.Globalization.DateTimeFormatInfo"/>
            class for a list of the format types available.</param>
            <returns>A string representation of the date</returns>
        </member>
        <member name="M:ZedGraph.XDate.ToString(System.Double,System.String)">
            <summary>
            Format the specified XL Date value using the specified format string.  The format
            string is specified according to the <see cref="P:ZedGraph.XDate.DateTime"/> class.
            </summary>
            <remarks>
            The formatting is done using the <see cref="P:ZedGraph.XDate.DateTime"/>
            <see cref="M:System.DateTime.ToString(System.String)"/>
            method in order to provide full localization capability.  The DateTime struct is limited to
            dates from 1 AD onward.  However, all calendar dates in <see cref="T:ZedGraph.XDate"/> and
            <see cref="P:ZedGraph.XDate.DateTime"/>
            are projected Gregorian calendar dates.  Since the Gregorian calendar was not implemented
            until October 4, 1582 (or later in some countries), Gregorian dates prior to that time are
            really dates that would have been, had the Gregorian calendar existed.  In order to avoid
            throwing an exception, for dates prior to 1 AD, the year will be converted to a positive
            year and the text "(BC)" is appended to the end of the formatted string.  Under this mode, the
            year sequence is 2BC, 1BC, 1AD, 2AD, etc.  There is no year zero.
            </remarks>
            <param name="xlDate">
            The XL date value to be formatted in floating point double format.
            </param>
            <param name="fmtStr">
            The formatting string to be used for the date.  See
            <see cref="T:System.Globalization.DateTimeFormatInfo"/>
            for a list of the format types available.</param>
            <returns>A string representation of the date</returns>
        </member>
        <member name="P:ZedGraph.XDate.XLDate">
            <summary>
            Gets or sets the date value for this item in MS Excel format.
            </summary>
        </member>
        <member name="P:ZedGraph.XDate.IsValidDate">
            <summary>
            Returns true if this <see cref="T:ZedGraph.XDate"/> struct is in the valid date range
            </summary>
        </member>
        <member name="P:ZedGraph.XDate.DateTime">
            <summary>
            Gets or sets the date value for this item in .Net DateTime format.
            </summary>
        </member>
        <member name="P:ZedGraph.XDate.JulianDay">
            <summary>
            Gets or sets the date value for this item in Julain day format.  This is the
            Astronomical Julian Day number, so a value of 0.0 corresponds to noon GMT on
            January 1st, -4712.  Thus, Julian Day number 2,400,000.0 corresponds to
            noon GMT on November 16, 1858.
            </summary>
        </member>
        <member name="P:ZedGraph.XDate.DecimalYear">
            <summary>
            Gets or sets the decimal year number (i.e., 1997.345) corresponding to this item.
            </summary>
        </member>
        <member name="T:ZedGraph.XAxis">
            <summary>
            <see cref="T:ZedGraph.XAxis"/> inherits from <see cref="T:ZedGraph.Axis"/>, and defines the
            special characteristics of a horizontal axis, specifically located at
            the bottom of the <see cref="P:ZedGraph.Chart.Rect"/> of the <see cref="T:ZedGraph.GraphPane"/>
            object
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.15 $ $Date: 2006/11/25 17:17:27 $ </version>
        </member>
        <member name="F:ZedGraph.XAxis.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.XAxis.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.XAxis"/> properties to
            default values as defined in the <see cref="T:ZedGraph.XAxis.Default"/> class
            </summary>
        </member>
        <member name="M:ZedGraph.XAxis.#ctor(System.String)">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.XAxis"/> properties to
            default values as defined in the <see cref="T:ZedGraph.XAxis.Default"/> class, except
            for the axis title
            </summary>
            <param name="title">The <see cref="P:ZedGraph.Axis.Title"/> for this axis</param>
        </member>
        <member name="M:ZedGraph.XAxis.#ctor(ZedGraph.XAxis)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The XAxis object from which to copy</param>
        </member>
        <member name="M:ZedGraph.XAxis.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.XAxis.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.XAxis.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.XAxis.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.XAxis.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.XAxis.SetTransformMatrix(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single)">
            <summary>
            Setup the Transform Matrix to handle drawing of this <see cref="T:ZedGraph.XAxis"/>
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.XAxis.IsPrimary(ZedGraph.GraphPane)">
            <summary>
            Determines if this <see cref="T:ZedGraph.Axis"/> object is a "primary" one.
            </summary>
            <remarks>
            The primary axes are the <see cref="T:ZedGraph.XAxis"/> (always), the first
            <see cref="T:ZedGraph.YAxis"/> in the <see cref="P:ZedGraph.GraphPane.YAxisList"/> 
            (<see cref="P:ZedGraph.CurveItem.YAxisIndex"/> = 0),  and the first
            <see cref="T:ZedGraph.Y2Axis"/> in the <see cref="P:ZedGraph.GraphPane.Y2AxisList"/> 
            (<see cref="P:ZedGraph.CurveItem.YAxisIndex"/> = 0).  Note that
            <see cref="P:ZedGraph.GraphPane.YAxis"/> and <see cref="P:ZedGraph.GraphPane.Y2Axis"/>
            always reference the primary axes.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <returns>true for a primary <see cref="T:ZedGraph.Axis"/> (for the <see cref="T:ZedGraph.XAxis"/>,
            this is always true), false otherwise</returns>
        </member>
        <member name="M:ZedGraph.XAxis.CalcCrossShift(ZedGraph.GraphPane)">
            <summary>
            Calculate the "shift" size, in pixels, in order to shift the axis from its default
            location to the value specified by <see cref="P:ZedGraph.Axis.Cross"/>.
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <returns>The shift amount measured in pixels</returns>
        </member>
        <member name="T:ZedGraph.XAxis.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.XAxis"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.XAxis.Default.IsVisible">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.XAxis"/>
            (<see cref="P:ZedGraph.Axis.IsVisible"/> property). true to display the scale
            values, title, tic marks, false to hide the axis entirely.
            </summary>
        </member>
        <member name="F:ZedGraph.XAxis.Default.IsZeroLine">
            <summary>
            Determines if a line will be drawn at the zero value for the 
            <see cref="T:ZedGraph.XAxis"/>, that is, a line that
            divides the negative values from positive values.
            <seealso cref="P:ZedGraph.MajorGrid.IsZeroLine"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.PieItem">
            <summary>
            A class representing a pie chart object comprised of one or more
            <see cref="T:ZedGraph.PieItem"/>s.
            </summary>
            <author> Bob Kaye </author>
            <version> $Revision: 1.31 $ $Date: 2007/01/25 07:56:09 $ </version>
        </member>
        <member name="F:ZedGraph.PieItem.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._displacement">
            <summary>
            Percentage (expressed as #.##) of <see cref="T:ZedGraph.PieItem"/>	radius  to
            which this <see cref="T:ZedGraph.PieItem"/> is to be displaced from the center.
              Displacement is done outward  along the radius
            bisecting the chord of this <see cref="T:ZedGraph.PieItem"/>.  Maximum allowable value
            is 0.5.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._labelDetail">
            <summary>
            A <see cref="T:ZedGraph.TextObj"/> which will customize the label display of this
            <see cref="T:ZedGraph.PieItem"/>
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._fill">
            <summary>
            Private	field	that stores the	<see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.PieItem"/>.	 Use the public property <see cref="P:ZedGraph.PieItem.Fill"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._border">
            <summary>
            Private	field	that stores the	<see cref="P:ZedGraph.PieItem.Border"/> class that defines	the
            properties of the	border around	this <see cref="T:ZedGraph.PieItem"/>. Use the public
            property	<see cref="P:ZedGraph.PieItem.Border"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._pieValue">
            <summary>
            Private field that stores the absolute value of this <see cref="T:ZedGraph.PieItem"/> instance.
            Value will be set to zero if submitted value is less than zero. 
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._labelType">
            <summary>
            An enum that specifies how each <see cref="P:ZedGraph.CurveItem.Label"/> for this <see cref="T:ZedGraph.PieItem"/> object 
            will be displayed.  Use the public property <see cref="P:ZedGraph.PieItem.LabelType"/> to access this data.  
            Use enum <see cref="T:ZedGraph.PieLabelType"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._intersectionPoint">
            <summary>
            The point on the arc of this <see cref="T:ZedGraph.PieItem"/> representing the intersection of
            the arc and the explosion radius.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._boundingRectangle">
            <summary>
            The bounding rectangle for this <see cref="T:ZedGraph.PieItem"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._labelStr">
            <summary>
            The formatted string for this <see cref="T:ZedGraph.PieItem"/>'s label.  Formatting is
            done based on  the <see cref="T:ZedGraph.PieLabelType"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._pivotPoint">
            <summary>
            The point at which the line between this <see cref="T:ZedGraph.PieItem"/> and its
            label bends to the horizontal.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._endPoint">
            <summary>
            The point at the end of the line between	this <see cref="T:ZedGraph.PieItem"/> and 
            it's label (i.e. the beginning of the label display)
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._slicePath">
            <summary>
            Private field to hold the GraphicsPath of this <see cref="T:ZedGraph.PieItem"/> to be
            used for 'hit testing'.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._startAngle">
            <summary>
            Private field which holds the angle (in degrees) at which the display of this <see cref="T:ZedGraph.PieItem"/>
            object will begin.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem._sweepAngle">
             <summary>
            Private field which holds the length (in degrees) of the arc representing this <see cref="T:ZedGraph.PieItem"/> 
            object.
             </summary>
        </member>
        <member name="F:ZedGraph.PieItem._midAngle">
             <summary>
            Private field which represents the angle (in degrees) of the radius along which this <see cref="T:ZedGraph.PieItem"/>
            object will be displaced, if desired.
             </summary>
        </member>
        <member name="F:ZedGraph.PieItem._valueDecimalDigits">
             <summary>
            Private field which determines the number of decimal digits displayed to 
            in a <see cref="T:ZedGraph.PieItem"/> label containing a value. 
             </summary>
        </member>
        <member name="F:ZedGraph.PieItem._percentDecimalDigits">
             <summary>
            Private field which determines the number of decimal digits displayed 
            in a <see cref="T:ZedGraph.PieItem"/> label containing a percent. 
             </summary>
        </member>
        <member name="M:ZedGraph.PieItem.IsZIncluded(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the Z data range should be included in the axis scaling calculations.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the Z data are included, false otherwise</value>
        </member>
        <member name="M:ZedGraph.PieItem.IsXIndependent(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the X axis is the independent axis for this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the X axis is independent, false otherwise</value>
        </member>
        <member name="M:ZedGraph.PieItem.#ctor(System.Double,System.Drawing.Color,System.Drawing.Color,System.Single,System.Double,System.String)">
            <summary>
            Create a new <see cref="T:ZedGraph.PieItem"/>, providing a gradient fill for the pie color.
            </summary>
            <param name="pieValue">The value associated with this <see cref="T:ZedGraph.PieItem"/> instance.</param>
            <param name="color1">The starting display color for the gradient <see cref="P:ZedGraph.PieItem.Fill"/> for this
            <see cref="T:ZedGraph.PieItem"/> instance.</param>
            <param name="color2">The ending display color for the gradient <see cref="P:ZedGraph.PieItem.Fill"/> for this
            <see cref="T:ZedGraph.PieItem"/> instance.</param>
            <param name="fillAngle">The angle for the gradient <see cref="P:ZedGraph.PieItem.Fill"/>.</param>
            <param name="displacement">The amount this <see cref="T:ZedGraph.PieItem"/>  instance will be 
            displaced from the center point.</param>
            <param name="label">Text label for this <see cref="T:ZedGraph.PieItem"/> instance.</param>
        </member>
        <member name="M:ZedGraph.PieItem.#ctor(System.Double,System.Drawing.Color,System.Double,System.String)">
            <summary>
            Create a new <see cref="T:ZedGraph.PieItem"/>.
            </summary>
            <param name="pieValue">The value associated with this <see cref="T:ZedGraph.PieItem"/> instance.</param>
            <param name="color">The display color for this <see cref="T:ZedGraph.PieItem"/> instance.</param>
            <param name="displacement">The amount this <see cref="T:ZedGraph.PieItem"/>  instance will be 
            displaced from the center point.</param>
            <param name="label">Text label for this <see cref="T:ZedGraph.PieItem"/> instance.</param>
        </member>
        <member name="M:ZedGraph.PieItem.#ctor(System.Double,System.String)">
            <summary>
            Create a  new <see cref="T:ZedGraph.PieItem"/>.
            </summary>
            <param name="pieValue">The value associated with this <see cref="T:ZedGraph.PieItem"/> instance.</param>
            <param name="label">Text label for this <see cref="T:ZedGraph.PieItem"/> instance</param>
        </member>
        <member name="M:ZedGraph.PieItem.#ctor(ZedGraph.PieItem)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.PieItem"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.PieItem.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.PieItem.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.PieItem.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.PieItem.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.PieItem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.PieItem.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.PieItem"/> item to the specified
            <see cref="T:System.Drawing.Graphics"/> device.  This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.CurveList"/>
            collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="pos">Not used for rendering Pies</param>param&gt;
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>				
        </member>
        <member name="M:ZedGraph.PieItem.CalcPieRect(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Drawing.RectangleF)">
            <summary>
            Calculate the <see cref="T:System.Drawing.RectangleF"/> that will be used to define the bounding rectangle of
            the Pie.
            </summary>
            <remarks>This rectangle always lies inside of the <see cref="P:ZedGraph.Chart.Rect"/>, and it is
            normally a square so that the pie itself is not oval-shaped.</remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>				
            <param name="chartRect">The <see cref="T:System.Drawing.RectangleF"/> (normally the <see cref="P:ZedGraph.Chart.Rect"/>)
            that bounds this pie.</param>
            <returns></returns>
        </member>
        <member name="M:ZedGraph.PieItem.CalcExplodedRect(System.Drawing.RectangleF@)">
            <summary>
            Recalculate the bounding rectangle when a piee slice is displaced.
            </summary>
            <param name="explRect">rectangle to be used for drawing exploded pie</param>
        </member>
        <member name="M:ZedGraph.PieItem.CalculatePieChartParams(ZedGraph.GraphPane,System.Double@)">
            <summary>
            Calculate the values needed to properly display this <see cref="T:ZedGraph.PieItem"/>.
            </summary>
            <param name="pane">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="maxDisplacement">maximum slice displacement</param>
        </member>
        <member name="M:ZedGraph.PieItem.DrawLabel(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            Render the label for this <see cref="T:ZedGraph.PieItem"/>.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="rect">Bounding rectangle for this <see cref="T:ZedGraph.PieItem"/>.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>				
        </member>
        <member name="M:ZedGraph.PieItem.DesignLabel(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            This method collects all the data relative to rendering this <see cref="T:ZedGraph.PieItem"/>'s label.
            </summary>
            <param name="g">
             A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="rect">The rectangle used for rendering this <see cref="T:ZedGraph.PieItem"/>
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.PieItem.CalculateLinePoints(System.Drawing.RectangleF,System.Double)">
            <summary>
            
            </summary>
            <param name="rect"></param>
            <param name="midAngle"></param>
        </member>
        <member name="M:ZedGraph.PieItem.BuildLabelString(ZedGraph.PieItem)">
            <summary>
            Build the string that will be displayed as the slice label as determined by 
            <see cref="P:ZedGraph.PieItem.LabelType"/>.
            </summary>
            <param name="curve">reference to the <see cref="T:ZedGraph.PieItem"/></param>
        </member>
        <member name="M:ZedGraph.PieItem.CalcNewBaseRect(System.Double,System.Drawing.RectangleF@)">
            <summary>
            A method which calculates a new size for the bounding rectangle for the non-displaced 
            <see cref="T:ZedGraph.PieItem"/>'s in the pie chart.  This method is called after it is found
            that at least one slice is displaced.
            </summary>
            <param name="maxDisplacement">The biggest displacement among the <see cref="T:ZedGraph.PieItem"/>s
            making up the pie chart.</param>
            <param name="baseRect">The current bounding rectangle</param>
        </member>
        <member name="M:ZedGraph.PieItem.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            Draw a legend key entry for this <see cref="T:ZedGraph.PieItem"/> at the specified location
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="rect">The <see cref="T:System.Drawing.RectangleF"/> struct that specifies the
            location for the legend key</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.PieItem.GetCoords(ZedGraph.GraphPane,System.Int32,System.String@)">
            <summary>
            Determine the coords for the rectangle associated with a specified point for 
            this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> to which this curve belongs</param>
            <param name="i">The index of the point of interest</param>
            <param name="coords">A list of coordinates that represents the "rect" for
            this point (used in an html AREA tag)</param>
            <returns>true if it's a valid point, false otherwise</returns>
        </member>
        <member name="P:ZedGraph.PieItem.Displacement">
            <summary>
            Gets or sets the a value which determines the amount, if any, of this <see cref="T:ZedGraph.PieItem"/>  
            displacement.
            </summary>
        </member>
        <member name="P:ZedGraph.PieItem.SlicePath">
            <summary>
            Gets or sets a path representing this <see cref="T:ZedGraph.PieItem"/>
            </summary>
        </member>
        <member name="P:ZedGraph.PieItem.LabelDetail">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.TextObj"/> to be used
            for displaying this <see cref="T:ZedGraph.PieItem"/>'s label.
            </summary>
        </member>
        <member name="P:ZedGraph.PieItem.Border">
            <summary>
            Gets or sets the <see cref="P:ZedGraph.PieItem.Border"/> object so as to be able to modify
            its properties.
            </summary>
        </member>
        <member name="P:ZedGraph.PieItem.Fill">
            <summary>
            Gets or sets the <see cref="P:ZedGraph.PieItem.Fill"/> object which is used to fill the
            pie slice with color.
            </summary>
        </member>
        <member name="P:ZedGraph.PieItem.SweepAngle">
            <summary>
            Gets or sets the arc length (in degrees) of this <see cref="T:ZedGraph.PieItem"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.PieItem.StartAngle">
            <summary>
            Gets or sets the starting angle (in degrees) of this <see cref="T:ZedGraph.PieItem"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.PieItem.MidAngle">
            <summary>
            Gets or sets the angle (in degrees) of the radius along which 
            this <see cref="T:ZedGraph.PieItem"/> will be displaced.
            </summary>
        </member>
        <member name="P:ZedGraph.PieItem.Value">
            <summary>
             Gets or sets the value of this <see cref="T:ZedGraph.PieItem"/>.  
             Minimum value is 0. 
            </summary>
        </member>
        <member name="P:ZedGraph.PieItem.LabelType">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.PieLabelType"/> to be used in displaying 
            <see cref="T:ZedGraph.PieItem"/> labels.
            </summary>
        </member>
        <member name="P:ZedGraph.PieItem.ValueDecimalDigits">
            <summary>
            Gets or sets the number of decimal digits to be displayed in a <see cref="T:ZedGraph.PieItem"/> 
            value label.
            </summary>
        </member>
        <member name="P:ZedGraph.PieItem.PercentDecimalDigits">
            <summary>
            Gets or sets the number of decimal digits to be displayed in a <see cref="T:ZedGraph.PieItem"/> 
            percent label.
            </summary>
        </member>
        <member name="T:ZedGraph.PieItem.Default">
            <summary>
            Specify the default property values for the <see cref="T:ZedGraph.PieItem"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.Displacement">
             <summary>
            Default <see cref="T:ZedGraph.PieItem"/> displacement.
             </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.BorderWidth">
            <summary>
            The default pen width	to be used for drawing the	border around	the PieItem
            (<see cref="P:ZedGraph.LineBase.Width"/> property). Units are points.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.FillType">
            <summary>
            The default fill mode for this PieItem (<see cref="P:ZedGraph.Fill.Type"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.IsBorderVisible">
            <summary>
            The default border mode for PieItem (<see cref="P:ZedGraph.LineBase.IsVisible"/> property).
            true to	display frame around PieItem, false otherwise
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.BorderColor">
            <summary>
            The default color for drawing	frames around	PieItem
            (<see cref="P:ZedGraph.LineBase.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.FillColor">
            <summary>
            The default color for filling in	the PieItem
            (<see cref="P:ZedGraph.Fill.Color"/>	property).
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.FillBrush">
            <summary>
            The default custom brush for filling in the PieItem.
            (<see cref="P:ZedGraph.Fill.Brush"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.isVisible">
             <summary>
            Default value for controlling <see cref="T:ZedGraph.PieItem"/> display.
             </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.LabelType">
            <summary>
            Default value for <see cref="P:ZedGraph.PieItem.LabelType"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.FontSize">
            <summary>
            The default font size for  <see cref="P:ZedGraph.PieItem.LabelDetail"/> entries
            (<see cref="P:ZedGraph.FontSpec.Size"/> property).  Units are
            in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.ValueDecimalDigits">
            <summary>
            Default value for the number of decimal digits  
            to be displayed when <see cref="F:ZedGraph.PieItem.Default.LabelType"/>  contains a value.
            </summary>
        </member>
        <member name="F:ZedGraph.PieItem.Default.PercentDecimalDigits">
            <summary>
            Default value for the number of decimal digits  
            to be displayed where <see cref="F:ZedGraph.PieItem.Default.LabelType"/> contains a percent.
            </summary>
        </member>
        <member name="T:ZedGraph.MajorGrid">
            <summary>
            Class that handles the data associated with the major grid lines on the chart.
            Inherits from <see cref="T:ZedGraph.MinorGrid"/>.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="T:ZedGraph.MinorGrid">
            <summary>
            Class that holds the specific properties for the minor grid.
            </summary>
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="F:ZedGraph.MinorGrid.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.MinorGrid.#ctor">
            <summary>
            Default constructor
            </summary>
        </member>
        <member name="M:ZedGraph.MinorGrid.#ctor(ZedGraph.MinorGrid)">
            <summary>
            Copy constructor
            </summary>
            <param name="rhs">The source <see cref="T:ZedGraph.MinorGrid"/> to be copied.</param>
        </member>
        <member name="M:ZedGraph.MinorGrid.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.MinorGrid.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.MinorGrid.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.MinorGrid.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.MinorGrid.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.MinorGrid.IsVisible">
            <summary>
            Gets or sets a value that determines if the major <see cref="T:ZedGraph.Axis"/> gridlines
            (at each labeled value) will be visible
            </summary>
            <value>true to show the gridlines, false otherwise</value>
            <seealso cref="F:ZedGraph.MinorGrid.Default.IsVisible">Default.IsShowGrid</seealso>.
            <seealso cref="P:ZedGraph.MinorGrid.Color"/>
            <seealso cref="P:ZedGraph.MinorGrid.PenWidth"/>
            <seealso cref="P:ZedGraph.MinorGrid.DashOn"/>
            <seealso cref="P:ZedGraph.MinorGrid.DashOff"/>
            <seealso cref="P:ZedGraph.MinorGrid.IsVisible"/>
        </member>
        <member name="P:ZedGraph.MinorGrid.DashOn">
            <summary>
            The "Dash On" mode for drawing the grid.
            </summary>
            <remarks>
            This is the distance,
            in points (1/72 inch), of the dash segments that make up the dashed grid lines.
            </remarks>
            <value>The dash on length is defined in points (1/72 inch)</value>
            <seealso cref="P:ZedGraph.MinorGrid.DashOff"/>
            <seealso cref="P:ZedGraph.MinorGrid.IsVisible"/>
            <seealso cref="F:ZedGraph.MinorGrid.Default.DashOn"/>.
        </member>
        <member name="P:ZedGraph.MinorGrid.DashOff">
            <summary>
            The "Dash Off" mode for drawing the grid.
            </summary>
            <remarks>
            This is the distance,
            in points (1/72 inch), of the spaces between the dash segments that make up
            the dashed grid lines.
            </remarks>
            <value>The dash off length is defined in points (1/72 inch)</value>
            <seealso cref="P:ZedGraph.MinorGrid.DashOn"/>
            <seealso cref="P:ZedGraph.MinorGrid.IsVisible"/>
            <seealso cref="F:ZedGraph.MinorGrid.Default.DashOff"/>.
        </member>
        <member name="P:ZedGraph.MinorGrid.PenWidth">
            <summary>
            The pen width used for drawing the grid lines.
            </summary>
            <value>The grid pen width is defined in points (1/72 inch)</value>
            <seealso cref="P:ZedGraph.MinorGrid.IsVisible"/>
            <seealso cref="F:ZedGraph.MinorGrid.Default.PenWidth"/>.
            <seealso cref="P:ZedGraph.MinorGrid.Color"/>
        </member>
        <member name="P:ZedGraph.MinorGrid.Color">
            <summary>
            The color to use for drawing this <see cref="T:ZedGraph.Axis"/> grid.
            </summary>
            <value> The color is defined using the
            <see cref="T:System.Drawing.Color"/> class</value>
            <seealso cref="F:ZedGraph.MinorGrid.Default.Color"/>.
            <seealso cref="P:ZedGraph.MinorGrid.PenWidth"/>
        </member>
        <member name="T:ZedGraph.MinorGrid.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.MinorGrid"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.MinorGrid.Default.DashOn">
            <summary>
            The default "dash on" size for drawing the <see cref="T:ZedGraph.Axis"/> minor grid
            (<see cref="P:ZedGraph.MinorGrid.DashOn"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.MinorGrid.Default.DashOff">
            <summary>
            The default "dash off" size for drawing the <see cref="T:ZedGraph.Axis"/> minor grid
            (<see cref="P:ZedGraph.MinorGrid.DashOff"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.MinorGrid.Default.PenWidth">
            <summary>
            The default pen width for drawing the <see cref="T:ZedGraph.Axis"/> minor grid
            (<see cref="P:ZedGraph.MinorGrid.PenWidth"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.MinorGrid.Default.Color">
            <summary>
            The default color for the <see cref="T:ZedGraph.Axis"/> minor grid lines
            (<see cref="P:ZedGraph.MinorGrid.Color"/> property).  This color only affects the
            minor grid lines.
            </summary>
        </member>
        <member name="F:ZedGraph.MinorGrid.Default.IsVisible">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.Axis"/> minor grid lines
            (<see cref="P:ZedGraph.MinorGrid.IsVisible"/> property). true
            to show the minor grid lines, false to hide them.
            </summary>
        </member>
        <member name="F:ZedGraph.MajorGrid.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.MajorGrid.#ctor">
            <summary>
            Default constructor
            </summary>
        </member>
        <member name="M:ZedGraph.MajorGrid.#ctor(ZedGraph.MajorGrid)">
            <summary>
            Copy constructor
            </summary>
            <param name="rhs">The source <see cref="T:ZedGraph.MajorGrid"/> to be copied.</param>
        </member>
        <member name="M:ZedGraph.MajorGrid.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.MajorGrid.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.MajorGrid.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.MajorGrid.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.MajorGrid.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.MajorGrid.IsZeroLine">
            <summary>
            Gets or sets a boolean value that determines if a line will be drawn at the
            zero value for the axis.
            </summary>
            <remarks>
            The zero line is a line that divides the negative values from the positive values.
            The default is set according to
            <see cref="F:ZedGraph.XAxis.Default.IsZeroLine"/>, <see cref="F:ZedGraph.YAxis.Default.IsZeroLine"/>,
            <see cref="F:ZedGraph.Y2Axis.Default.IsZeroLine"/>,
            </remarks>
            <value>true to show the zero line, false otherwise</value>
        </member>
        <member name="T:ZedGraph.MajorGrid.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.MajorGrid"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.MajorGrid.Default.DashOn">
            <summary>
            The default "dash on" size for drawing the <see cref="T:ZedGraph.Axis"/> grid
            (<see cref="P:ZedGraph.MinorGrid.DashOn"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.MajorGrid.Default.DashOff">
            <summary>
            The default "dash off" size for drawing the <see cref="T:ZedGraph.Axis"/> grid
            (<see cref="P:ZedGraph.MinorGrid.DashOff"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.MajorGrid.Default.PenWidth">
            <summary>
            The default pen width for drawing the <see cref="T:ZedGraph.Axis"/> grid
            (<see cref="P:ZedGraph.MinorGrid.PenWidth"/> property). Units are in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.MajorGrid.Default.Color">
            <summary>
            The default color for the <see cref="T:ZedGraph.Axis"/> grid lines
            (<see cref="P:ZedGraph.MinorGrid.Color"/> property).  This color only affects the
            grid lines.
            </summary>
        </member>
        <member name="F:ZedGraph.MajorGrid.Default.IsVisible">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.Axis"/> grid lines
            (<see cref="P:ZedGraph.MinorGrid.IsVisible"/> property). true
            to show the grid lines, false to hide them.
            </summary>
        </member>
        <member name="F:ZedGraph.MajorGrid.Default.IsZeroLine">
            <summary>
            The default boolean value that determines if a line will be drawn at the
            zero value for the axis.
            </summary>
            <remarks>
            The zero line is a line that divides the negative values from the positive values.
            The default is set according to
            <see cref="F:ZedGraph.XAxis.Default.IsZeroLine"/>, <see cref="F:ZedGraph.YAxis.Default.IsZeroLine"/>,
            <see cref="F:ZedGraph.Y2Axis.Default.IsZeroLine"/>,
            </remarks>
            <value>true to show the zero line, false otherwise</value>
        </member>
        <member name="T:ZedGraph.JapaneseCandleStick">
            <summary>
            This class handles the drawing of the curve <see cref="T:ZedGraph.JapaneseCandleStick"/> objects.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.9 $ $Date: 2007/01/30 08:42:40 $ </version>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStick.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStick._risingFill">
            <summary>
            Private field to store the <see cref="T:ZedGraph.Fill"/> class to be used for filling the
            candlestick "bars" when the <see cref="F:ZedGraph.StockPt.Close"/> value is greater than
            the <see cref="F:ZedGraph.StockPt.Open"/> value.  See the public property
            <see cref="P:ZedGraph.JapaneseCandleStick.RisingFill"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStick._fallingFill">
            <summary>
            Private field to store the <see cref="T:ZedGraph.Fill"/> class to be used for filling the
            candlestick "bars" when the <see cref="F:ZedGraph.StockPt.Close"/> value is less than
            the <see cref="F:ZedGraph.StockPt.Open"/> value.  See the public property
            <see cref="P:ZedGraph.JapaneseCandleStick.FallingFill"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStick._risingBorder">
            <summary>
            Private field to store the <see cref="T:ZedGraph.Border"/> class to be used for drawing the
            candlestick "bars" when the <see cref="F:ZedGraph.StockPt.Close"/> value is greater than
            the <see cref="F:ZedGraph.StockPt.Open"/> value.  See the public property
            <see cref="P:ZedGraph.JapaneseCandleStick.RisingBorder"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStick._fallingBorder">
            <summary>
            Private field to store the <see cref="T:ZedGraph.Border"/> class to be used for drawing the
            candlestick "bars" when the <see cref="F:ZedGraph.StockPt.Close"/> value is less than
            the <see cref="F:ZedGraph.StockPt.Open"/> value.  See the public property
            <see cref="P:ZedGraph.JapaneseCandleStick.FallingBorder"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStick._fallingColor">
            <summary>
            Private field that stores the CandleStick color when the <see cref="F:ZedGraph.StockPt.Close"/> 
            value is less than the <see cref="F:ZedGraph.StockPt.Open"/> value.  Use the public
            property <see cref="P:ZedGraph.JapaneseCandleStick.FallingColor"/> to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStick.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.JapaneseCandleStick"/> properties to
            default values as defined in the <see cref="T:ZedGraph.JapaneseCandleStick.Default"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStick.#ctor(ZedGraph.JapaneseCandleStick)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.JapaneseCandleStick"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStick.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.JapaneseCandleStick.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStick.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStick.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStick.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStick.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Boolean,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Drawing.Pen,ZedGraph.Fill,ZedGraph.Border,ZedGraph.PointPair)">
            <summary>
            Draw the <see cref="T:ZedGraph.JapaneseCandleStick"/> to the specified <see cref="T:System.Drawing.Graphics"/>
            device at the specified location.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="isXBase">boolean value that indicates if the "base" axis for this
            <see cref="T:ZedGraph.JapaneseCandleStick"/> is the X axis.  True for an <see cref="T:ZedGraph.XAxis"/> base,
            false for a <see cref="T:ZedGraph.YAxis"/> or <see cref="T:ZedGraph.Y2Axis"/> base.</param>
            <param name="pixBase">The independent axis position of the center of the candlestick in
            pixel units</param>
            <param name="pixHigh">The high value position of the candlestick in
            pixel units</param>
            <param name="pixLow">The low value position of the candlestick in
            pixel units</param>
            <param name="pixOpen">The opening value position of the candlestick in
            pixel units</param>
            <param name="pixClose">The closing value position of the candlestick in
            pixel units</param>
            <param name="halfSize">The scaled width of one-half of a bar, in pixels</param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.</param>
            <param name="pen">A pen with the <see cref="T:System.Drawing.Color"/> attribute for this
            <see cref="T:ZedGraph.JapaneseCandleStick"/></param>
            <param name="fill">
            The <see cref="T:ZedGraph.Fill"/> instance to be used for filling this
            <see cref="T:ZedGraph.JapaneseCandleStick"/>
            </param>
            <param name="border">The <see cref="T:ZedGraph.Border"/> instance to be used for drawing the
            border around the <see cref="T:ZedGraph.JapaneseCandleStick"/> filled box</param>
            <param name="pt">The <see cref="T:ZedGraph.PointPair"/> to be used for determining the
            <see cref="T:ZedGraph.Fill"/>, just in case it's a <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/>, or
            <see cref="F:ZedGraph.FillType.GradientByZ"/> <see cref="T:ZedGraph.FillType"/></param>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStick.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.JapaneseCandleStickItem,ZedGraph.Axis,ZedGraph.Axis,System.Single)">
            <summary>
            Draw all the <see cref="T:ZedGraph.JapaneseCandleStick"/>'s to the specified <see cref="T:System.Drawing.Graphics"/>
            device as a candlestick at each defined point.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.JapaneseCandleStickItem"/> object representing the
            <see cref="T:ZedGraph.JapaneseCandleStick"/>'s to be drawn.</param>
            <param name="baseAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the base (independent)
            axis for the <see cref="T:ZedGraph.JapaneseCandleStick"/></param>
            <param name="valueAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the value (dependent)
            axis for the <see cref="T:ZedGraph.JapaneseCandleStick"/></param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="P:ZedGraph.JapaneseCandleStick.RisingFill">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Fill"/> class that is used to fill the candlestick
            "bars" when the <see cref="F:ZedGraph.StockPt.Close"/> value is greater than the
            <see cref="F:ZedGraph.StockPt.Open"/> value.
            </summary>
        </member>
        <member name="P:ZedGraph.JapaneseCandleStick.FallingFill">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Fill"/> class that is used to fill the candlestick
            "bars" when the <see cref="F:ZedGraph.StockPt.Close"/> value is less than the
            <see cref="F:ZedGraph.StockPt.Open"/> value.
            </summary>
        </member>
        <member name="P:ZedGraph.JapaneseCandleStick.RisingBorder">
            <summary>
            The <see cref="T:ZedGraph.Border"/> instance to be used for drawing the border frame of
            the candlestick "bars" when the <see cref="F:ZedGraph.StockPt.Close"/> value is greater than the
            <see cref="F:ZedGraph.StockPt.Open"/> value.
            </summary>
        </member>
        <member name="P:ZedGraph.JapaneseCandleStick.FallingBorder">
            <summary>
            The <see cref="T:ZedGraph.Border"/> instance to be used for drawing the border frame of
            the candlestick "bars" when the <see cref="F:ZedGraph.StockPt.Close"/> value is less than the
            <see cref="F:ZedGraph.StockPt.Open"/> value.
            </summary>
        </member>
        <member name="P:ZedGraph.JapaneseCandleStick.FallingColor">
            <summary>
            Gets or sets the <see cref="T:System.Drawing.Color"/> data for this
            <see cref="T:ZedGraph.JapaneseCandleStick"/> when the value of the candlestick is
            falling.
            </summary>
            <remarks>This property only controls the color of
            the vertical line when the value is falling.  The rising color is controlled
            by the <see cref="P:ZedGraph.LineBase.Color"/> property.
            </remarks>
        </member>
        <member name="T:ZedGraph.JapaneseCandleStick.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.JapaneseCandleStick"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStick.Default.RisingColor">
            <summary>
            The default fillcolor for drawing the rising case CandleSticks
            (<see cref="P:ZedGraph.JapaneseCandleStick.RisingFill"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStick.Default.FallingColor">
            <summary>
            The default fillcolor for drawing the falling case CandleSticks
            (<see cref="P:ZedGraph.JapaneseCandleStick.FallingFill"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStick.Default.RisingBorder">
            <summary>
            The default color for the border of the rising CandleSticks
            (<see cref="P:ZedGraph.JapaneseCandleStick.RisingBorder"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStick.Default.FallingBorder">
            <summary>
            The default color for the border of the falling CandleSticks
            (<see cref="P:ZedGraph.JapaneseCandleStick.FallingBorder"/> property).
            </summary>
        </member>
        <member name="T:ZedGraph.Y2Axis">
            <summary>
            <see cref="T:ZedGraph.Y2Axis"/> inherits from <see cref="T:ZedGraph.Axis"/>, and defines the
            special characteristics of a vertical axis, specifically located on
            the right side of the <see cref="P:ZedGraph.Chart.Rect"/> of the <see cref="T:ZedGraph.GraphPane"/>
            object
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.15 $ $Date: 2006/11/25 17:17:27 $ </version>
        </member>
        <member name="F:ZedGraph.Y2Axis.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.Y2Axis.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.Y2Axis"/> properties to
            default values as defined in the <see cref="T:ZedGraph.Y2Axis.Default"/> class
            </summary>
        </member>
        <member name="M:ZedGraph.Y2Axis.#ctor(System.String)">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.Y2Axis"/> properties to
            default values as defined in the <see cref="T:ZedGraph.Y2Axis.Default"/> class, except
            for the axis title
            </summary>
            <param name="title">The <see cref="P:ZedGraph.Axis.Title"/> for this axis</param>
        </member>
        <member name="M:ZedGraph.Y2Axis.#ctor(ZedGraph.Y2Axis)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The Y2Axis object from which to copy</param>
        </member>
        <member name="M:ZedGraph.Y2Axis.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Y2Axis.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Y2Axis.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Y2Axis.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Y2Axis.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.Y2Axis.SetTransformMatrix(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single)">
            <summary>
            Setup the Transform Matrix to handle drawing of this <see cref="T:ZedGraph.Y2Axis"/>
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.Y2Axis.IsPrimary(ZedGraph.GraphPane)">
            <summary>
            Determines if this <see cref="T:ZedGraph.Axis"/> object is a "primary" one.
            </summary>
            <remarks>
            The primary axes are the <see cref="T:ZedGraph.XAxis"/> (always), the first
            <see cref="T:ZedGraph.YAxis"/> in the <see cref="P:ZedGraph.GraphPane.YAxisList"/> 
            (<see cref="P:ZedGraph.CurveItem.YAxisIndex"/> = 0),  and the first
            <see cref="T:ZedGraph.Y2Axis"/> in the <see cref="P:ZedGraph.GraphPane.Y2AxisList"/> 
            (<see cref="P:ZedGraph.CurveItem.YAxisIndex"/> = 0).  Note that
            <see cref="P:ZedGraph.GraphPane.YAxis"/> and <see cref="P:ZedGraph.GraphPane.Y2Axis"/>
            always reference the primary axes.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <returns>true for a primary <see cref="T:ZedGraph.Axis"/>, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.Y2Axis.CalcCrossShift(ZedGraph.GraphPane)">
            <summary>
            Calculate the "shift" size, in pixels, in order to shift the axis from its default
            location to the value specified by <see cref="P:ZedGraph.Axis.Cross"/>.
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <returns>The shift amount measured in pixels</returns>
        </member>
        <member name="T:ZedGraph.Y2Axis.Default">
            <summary>
            A simple subclass of the <see cref="T:ZedGraph.Y2Axis.Default"/> class that defines the
            default property values for the <see cref="T:ZedGraph.Y2Axis"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.Y2Axis.Default.IsVisible">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.Y2Axis"/>
            (<see cref="P:ZedGraph.Axis.IsVisible"/> property). true to display the scale
            values, title, tic marks, false to hide the axis entirely.
            </summary>
        </member>
        <member name="F:ZedGraph.Y2Axis.Default.IsZeroLine">
            <summary>
            Determines if a line will be drawn at the zero value for the 
            <see cref="T:ZedGraph.Y2Axis"/>, that is, a line that
            divides the negative values from positive values.
            <seealso cref="P:ZedGraph.MajorGrid.IsZeroLine"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.TextScale">
            <summary>
            The TextScale class inherits from the <see cref="T:ZedGraph.Scale"/> class, and implements
            the features specific to <see cref="F:ZedGraph.AxisType.Text"/>.
            </summary>
            <remarks>
            TextScale is an ordinal axis with user-defined text labels.  An ordinal axis means that
            all data points are evenly spaced at integral values, and the actual coordinate values
            for points corresponding to that axis are ignored.  That is, if the X axis is an
            ordinal type, then all X values associated with the curves are ignored.
            </remarks>
            
            <author> John Champion  </author>
            <version> $Revision: 1.8 $ $Date: 2006/08/25 05:19:09 $ </version>
        </member>
        <member name="F:ZedGraph.TextScale.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.TextScale.#ctor(ZedGraph.Scale,ZedGraph.Axis)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.TextScale"/> object from which to copy</param>
            <param name="owner">The <see cref="T:ZedGraph.Axis"/> object that will own the
            new instance of <see cref="T:ZedGraph.TextScale"/></param>
        </member>
        <member name="M:ZedGraph.TextScale.Clone(ZedGraph.Axis)">
            <summary>
            Create a new clone of the current item, with a new owner assignment
            </summary>
            <param name="owner">The new <see cref="T:ZedGraph.Axis"/> instance that will be
            the owner of the new Scale</param>
            <returns>A new <see cref="T:ZedGraph.Scale"/> clone.</returns>
        </member>
        <member name="M:ZedGraph.TextScale.CalcMinorStart(System.Double)">
            <summary>
            Internal routine to determine the ordinals of the first minor tic mark
            </summary>
            <param name="baseVal">
            The value of the first major tic for the axis.
            </param>
            <returns>
            The ordinal position of the first minor tic, relative to the first major tic.
            This value can be negative (e.g., -3 means the first minor tic is 3 minor step
            increments before the first major tic.
            </returns>
        </member>
        <member name="M:ZedGraph.TextScale.CalcBaseTic">
            <summary>
            Determine the value for the first major tic.
            </summary>
            <remarks>
            This is done by finding the first possible value that is an integral multiple of
            the step size, taking into account the date/time units if appropriate.
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <returns>
            First major tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.TextScale.CalcNumTics">
            <summary>
            Internal routine to determine the ordinals of the first and last major axis label.
            </summary>
            <returns>
            This is the total number of major tics for this axis.
            </returns>
        </member>
        <member name="M:ZedGraph.TextScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)">
            <summary>
            Select a reasonable text axis scale given a range of data values.
            </summary>
            <remarks>
            This method only applies to <see cref="F:ZedGraph.AxisType.Text"/> type axes, and it
            is called by the general <see cref="M:ZedGraph.TextScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/> method.  This is an ordinal
            type, such that the labeled values start at 1.0 and increment by 1.0 for
            each successive label.  The maximum number of labels on the graph is
            determined by <see cref="F:ZedGraph.Scale.Default.MaxTextLabels"/>.  If necessary, this method will
            set the <see cref="P:ZedGraph.Scale.MajorStep"/> value to greater than 1.0 in order to keep the total
            labels displayed below <see cref="F:ZedGraph.Scale.Default.MaxTextLabels"/>.  For example, a
            <see cref="P:ZedGraph.Scale.MajorStep"/> size of 2.0 would only display every other label on the
            axis.  The <see cref="P:ZedGraph.Scale.MajorStep"/> value calculated by this routine is always
            an integral value.  This
            method honors the <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/> autorange settings.
            In the event that any of the autorange settings are false, the
            corresponding <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>, or <see cref="P:ZedGraph.Scale.MajorStep"/>
            setting is explicitly honored, and the remaining autorange settings (if any) will
            be calculated to accomodate the non-autoranged values.
            <para>On Exit:</para>
            <para><see cref="P:ZedGraph.Scale.Min"/> is set to scale minimum (if <see cref="P:ZedGraph.Scale.MinAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Max"/> is set to scale maximum (if <see cref="P:ZedGraph.Scale.MaxAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MajorStep"/> is set to scale step size (if <see cref="P:ZedGraph.Scale.MajorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MinorStep"/> is set to scale minor step size (if <see cref="P:ZedGraph.Scale.MinorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Mag"/> is set to a magnitude multiplier according to the data</para>
            <para><see cref="P:ZedGraph.Scale.Format"/> is set to the display format for the values (this controls the
            number of decimal places, whether there are thousands separators, currency types, etc.)</para>
            </remarks>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object
            associated with this <see cref="T:ZedGraph.Axis"/></param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <seealso cref="M:ZedGraph.TextScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>
            <seealso cref="F:ZedGraph.AxisType.Text"/>
        </member>
        <member name="M:ZedGraph.TextScale.MakeLabel(ZedGraph.GraphPane,System.Int32,System.Double)">
            <summary>
            Make a value label for an <see cref="F:ZedGraph.AxisType.Text"/> <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="index">
            The zero-based, ordinal index of the label to be generated.  For example, a value of 2 would
            cause the third value label on the axis to be generated.
            </param>
            <param name="dVal">
            The numeric value associated with the label.  This value is ignored for log (<see cref="P:ZedGraph.Scale.IsLog"/>)
            and text (<see cref="P:ZedGraph.Scale.IsText"/>) type axes.
            </param>
            <returns>The resulting value label as a <see cref="T:System.String"/></returns>
        </member>
        <member name="M:ZedGraph.TextScale.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.TextScale.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="T:ZedGraph.PerfDataType">
            <summary>
            An enum used to specify the X or Y data type of interest -- see
            <see cref="F:ZedGraph.SampleMultiPointList.XData"/> and <see cref="F:ZedGraph.SampleMultiPointList.YData"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.PerfDataType.Time">
            <summary>
            The time (seconds) at which these data are measured
            </summary>
        </member>
        <member name="F:ZedGraph.PerfDataType.Distance">
            <summary>
            The distance traveled, meters
            </summary>
        </member>
        <member name="F:ZedGraph.PerfDataType.Velocity">
            <summary>
            The instantaneous velocity, meters per second
            </summary>
        </member>
        <member name="F:ZedGraph.PerfDataType.Acceleration">
            <summary>
            The instantaneous acceleration, meters per second squared
            </summary>
        </member>
        <member name="T:ZedGraph.PerformanceData">
            <summary>
            Sample data structure containing a variety of data values, in this case the values
            are related in that they correspond to the same time value.
            </summary>
        </member>
        <member name="F:ZedGraph.PerformanceData.time">
            <summary>
            The time (seconds) at which these data are measured
            </summary>
        </member>
        <member name="F:ZedGraph.PerformanceData.distance">
            <summary>
            The distance traveled, meters
            </summary>
        </member>
        <member name="F:ZedGraph.PerformanceData.velocity">
            <summary>
            The instantaneous velocity, meters per second
            </summary>
        </member>
        <member name="F:ZedGraph.PerformanceData.acceleration">
            <summary>
            The instantaneous acceleration, meters per second squared
            </summary>
        </member>
        <member name="M:ZedGraph.PerformanceData.#ctor(System.Double,System.Double,System.Double,System.Double)">
            <summary>
            Constructor that specifies each data value in the PerformanceData struct
            </summary>
            <param name="time">The time (seconds) at which these data are measured</param>
            <param name="distance">The distance traveled, meters</param>
            <param name="velocity">The instantaneous velocity, meters per second</param>
            <param name="acceleration">The instantaneous acceleration, meters per second squared</param>
        </member>
        <member name="P:ZedGraph.PerformanceData.Item(ZedGraph.PerfDataType)">
            <summary>
            Gets or sets the data value as specified by the <see cref="T:ZedGraph.PerfDataType"/> enum
            </summary>
            <param name="type">The required data value type</param>
        </member>
        <member name="T:ZedGraph.SampleMultiPointList">
            <summary>
            A sample class that holds an internal collection, and implements the
            <see cref="T:ZedGraph.IPointList"/> interface so that it can be used by ZedGraph as curve data.
            </summary>
            <remarks>
            This particular class efficiently implements the data storage so that the class
            can be cloned without duplicating the data points.  For example, you can create
            a <see cref="T:ZedGraph.SampleMultiPointList"/>, populate it with values, and set
            <see cref="F:ZedGraph.SampleMultiPointList.XData"/> = <see cref="F:ZedGraph.PerfDataType.Time"/> and
            <see cref="F:ZedGraph.SampleMultiPointList.YData"/> = <see cref="F:ZedGraph.PerfDataType.Distance"/>.
            You can then clone this <see cref="T:ZedGraph.SampleMultiPointList"/> to a new one, and set
            <see cref="F:ZedGraph.SampleMultiPointList.YData"/> = <see cref="F:ZedGraph.PerfDataType.Velocity"/>.
            Each of these <see cref="T:ZedGraph.SampleMultiPointList"/>'s can then be used as an
            <see cref="M:ZedGraph.GraphPane.AddCurve(System.String,ZedGraph.IPointList,System.Drawing.Color)"/> argument,
            thereby plotting a distance vs time curve and a velocity vs time curve.  There
            will still be only one copy of the data in memory.
            </remarks>
        </member>
        <member name="F:ZedGraph.SampleMultiPointList.DataCollection">
            <summary>
            This is where the data are stored.  Duplicating the <see cref="T:ZedGraph.SampleMultiPointList"/>
            copies the reference to this <see cref="T:System.Collections.ArrayList"/>, but does not actually duplicate
            the data.
            </summary>
        </member>
        <member name="F:ZedGraph.SampleMultiPointList.XData">
            <summary>
            Determines what X data will be returned by the indexer of this list.
            </summary>
        </member>
        <member name="F:ZedGraph.SampleMultiPointList.YData">
            <summary>
            Determines what Y data will be returned by the indexer of this list.
            </summary>
        </member>
        <member name="M:ZedGraph.SampleMultiPointList.#ctor">
            <summary>
            Default constructor
            </summary>
        </member>
        <member name="M:ZedGraph.SampleMultiPointList.#ctor(ZedGraph.SampleMultiPointList)">
            <summary>
            The Copy Constructor.  This method does NOT duplicate the data, it merely makes
            another "Window" into the same collection.  You can make multiple copies and
            set the <see cref="F:ZedGraph.SampleMultiPointList.XData"/> and/or <see cref="F:ZedGraph.SampleMultiPointList.YData"/> properties to different
            values to plot different data, while maintaining only one copy of the original values.
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.SampleMultiPointList"/> from which to copy</param>
        </member>
        <member name="M:ZedGraph.SampleMultiPointList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.SampleMultiPointList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.SampleMultiPointList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.SampleMultiPointList.Add(ZedGraph.PerformanceData)">
            <summary>
            Adds the specified <see cref="T:ZedGraph.PerformanceData"/> struct to the end of the collection.
            </summary>
            <param name="perfData">A <see cref="T:ZedGraph.PerformanceData"/> struct to be added</param>
            <returns>The ordinal position in the collection where the values were added</returns>
        </member>
        <member name="M:ZedGraph.SampleMultiPointList.RemoveAt(System.Int32)">
            <summary>
            Remove the <see cref="T:ZedGraph.PerformanceData"/> struct from the list at the specified
            ordinal location.
            </summary>
            <param name="index">The ordinal location of the <see cref="T:ZedGraph.PerformanceData"/>
            struct to be removed</param>
        </member>
        <member name="M:ZedGraph.SampleMultiPointList.Insert(System.Int32,ZedGraph.PerformanceData)">
            <summary>
            Insert the specified <see cref="T:ZedGraph.PerformanceData"/> struct into the list at
            the specified ordinal location.
            </summary>
            <param name="index">The ordinal location at which to insert</param>
            <param name="perfData">The <see cref="T:ZedGraph.PerformanceData"/> struct to be inserted</param>
        </member>
        <member name="P:ZedGraph.SampleMultiPointList.Item(System.Int32)">
            <summary>
            Indexer to access the data.  This gets the appropriate data and converts to
            the <see cref="T:ZedGraph.PointPair"/> struct that is compatible with ZedGraph.  The
            actual data returned depends on the values of <see cref="F:ZedGraph.SampleMultiPointList.XData"/> and
            <see cref="F:ZedGraph.SampleMultiPointList.YData"/>.
            </summary>
            <param name="index">The ordinal position of the desired point in the list</param>
            <returns>A <see cref="T:ZedGraph.PointPair"/> corresponding to the specified ordinal data position</returns>
        </member>
        <member name="P:ZedGraph.SampleMultiPointList.Count">
            <summary>
            Gets the number of data points in the collection
            </summary>
        </member>
        <member name="T:ZedGraph.FilteredPointList">
             <summary>
             An example of an <see cref="T:ZedGraph.IPointList"/> implementation that stores large datasets, and
             selectively filters the output data depending on the displayed range.
             </summary>
             <remarks>
             This class will refilter the data points each time <see cref="M:ZedGraph.FilteredPointList.SetBounds(System.Double,System.Double,System.Int32)"/> is called.  The
             data are filtered down to <see cref="P:ZedGraph.FilteredPointList.MaxPts"/> points, within the data bounds of
             a minimum and maximum data range.  The data are filtered by simply skipping
             points to achieve the desired total number of points.  Input arrays are assumed to be
             monotonically increasing in X, and evenly spaced in X.
             </remarks>
             <seealso cref="T:ZedGraph.PointPairList"/>
             <seealso cref="T:ZedGraph.BasicArrayPointList"/>
             <seealso cref="T:ZedGraph.IPointList"/>
             <seealso cref="T:ZedGraph.IPointListEdit"/>
            
             <author> John Champion with mods by Christophe Holmes</author>
             <version> $Revision: 1.8 $ $Date: 2007/02/18 05:51:53 $ </version>
        </member>
        <member name="F:ZedGraph.FilteredPointList._x">
            <summary>
            Instance of an array of x values
            </summary>
        </member>
        <member name="F:ZedGraph.FilteredPointList._y">
            <summary>
            Instance of an array of x values
            </summary>
        </member>
        <member name="F:ZedGraph.FilteredPointList._maxPts">
            <summary>
            This is the maximum number of points that you want to see in the filtered dataset
            </summary>
        </member>
        <member name="F:ZedGraph.FilteredPointList._minBoundIndex">
            <summary>
            The index of the xMinBound above
            </summary>
        </member>
        <member name="F:ZedGraph.FilteredPointList._maxBoundIndex">
            <summary>
            The index of the xMaxBound above
            </summary>
        </member>
        <member name="F:ZedGraph.FilteredPointList._upDown">
            <summary>
            Switch used to indicate if the next filtered point should be the high point or the
            low point within the current range.
            </summary>
        </member>
        <member name="F:ZedGraph.FilteredPointList._isApplyHighLowLogic">
            <summary>
            Determines if the high/low logic will be used.
            </summary>
        </member>
        <member name="M:ZedGraph.FilteredPointList.#ctor(System.Double[],System.Double[])">
            <summary>
            Constructor to initialize the PointPairList from two arrays of
            type double.
            </summary>
        </member>
        <member name="M:ZedGraph.FilteredPointList.#ctor(ZedGraph.FilteredPointList)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The FilteredPointList from which to copy</param>
        </member>
        <member name="M:ZedGraph.FilteredPointList.Clone">
            <summary>
            Deep-copy clone routine
            </summary>
            <returns>A new, independent copy of the FilteredPointList</returns>
        </member>
        <member name="M:ZedGraph.FilteredPointList.SetBounds(System.Double,System.Double,System.Int32)">
            <summary>
            Set the data bounds to the specified minimum, maximum, and point count.  Use values of
            min=double.MinValue and max=double.MaxValue to get the full range of data.  Use maxPts=-1
            to not limit the number of points.  Call this method anytime the zoom range is changed.
            </summary>
            <param name="min">The lower bound for the X data of interest</param>
            <param name="max">The upper bound for the X data of interest</param>
            <param name="maxPts">The maximum number of points allowed to be
            output by the filter</param>
        </member>
        <member name="P:ZedGraph.FilteredPointList.Item(System.Int32)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.PointPair"/> object by
            its ordinal position in the list.
            </summary>
            <remarks>
            Returns <see cref="F:ZedGraph.PointPairBase.Missing"/> for any value of <see paramref="index"/>
            that is outside of its corresponding array bounds.
            </remarks>
            <param name="index">The ordinal position (zero-based) of the
            <see cref="T:ZedGraph.PointPair"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.PointPair"/> object reference.</value>
        </member>
        <member name="P:ZedGraph.FilteredPointList.Count">
            <summary>
            Returns the number of points according to the current state of the filter.
            </summary>
        </member>
        <member name="P:ZedGraph.FilteredPointList.MaxPts">
            <summary>
            Gets the desired number of filtered points to output.  You can set this value by
            calling <see cref="M:ZedGraph.FilteredPointList.SetBounds(System.Double,System.Double,System.Int32)"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.FilteredPointList.IsApplyHighLowLogic">
            <summary>
            Gets or sets a value that determines if the High-Low filtering logic will be
            applied.
            </summary>
            <remarks>
            The high-low filtering logic alternately takes the highest or lowest Y value
            within the subrange of points to be skipped.  Set this value to true to apply
            this logic, or false to just use whatever value lies in the middle of the skipped
            range.</remarks>
        </member>
        <member name="T:ZedGraph.PointD">
            <summary>
            Simple struct that stores X and Y coordinates as doubles.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="F:ZedGraph.PointD.X">
            <summary>
            The X coordinate
            </summary>
        </member>
        <member name="F:ZedGraph.PointD.Y">
            <summary>
            The Y coordinate
            </summary>
        </member>
        <member name="M:ZedGraph.PointD.#ctor(System.Double,System.Double)">
            <summary>
            Construct a <see cref="T:ZedGraph.PointD"/> object from two double values.
            </summary>
            <param name="x">The X coordinate</param>
            <param name="y">The Y coordinate</param>
        </member>
        <member name="T:ZedGraph.Location">
            <summary>
            A class than contains information about the position of an object on the graph.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.14 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="F:ZedGraph.Location.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Location._alignV">
            <summary> Private field to store the vertical alignment property for
            this object.  Use the public property <see cref="P:ZedGraph.Location.AlignV"/>
            to access this value.  The value of this field is a <see cref="P:ZedGraph.Location.AlignV"/> enum.
            </summary>
        </member>
        <member name="F:ZedGraph.Location._alignH">
            <summary> Private field to store the horizontal alignment property for
            this object.  Use the public property <see cref="P:ZedGraph.Location.AlignH"/>
            to access this value.  The value of this field is a <see cref="P:ZedGraph.Location.AlignH"/> enum.
            </summary>
        </member>
        <member name="F:ZedGraph.Location._x">
            <summary> Private fields to store the X and Y coordinate positions for
            this object.  Use the public properties <see cref="P:ZedGraph.Location.X"/> and
            <see cref="P:ZedGraph.Location.Y"/> to access these values.  The coordinate type stored here is
            dependent upon the setting of <see cref="P:ZedGraph.Location.CoordinateFrame"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.Location._y">
            <summary> Private fields to store the X and Y coordinate positions for
            this object.  Use the public properties <see cref="P:ZedGraph.Location.X"/> and
            <see cref="P:ZedGraph.Location.Y"/> to access these values.  The coordinate type stored here is
            dependent upon the setting of <see cref="P:ZedGraph.Location.CoordinateFrame"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.Location._width">
            <summary> Private fields to store the X and Y coordinate positions for
            this object.  Use the public properties <see cref="P:ZedGraph.Location.X"/> and
            <see cref="P:ZedGraph.Location.Y"/> to access these values.  The coordinate type stored here is
            dependent upon the setting of <see cref="P:ZedGraph.Location.CoordinateFrame"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.Location._height">
            <summary> Private fields to store the X and Y coordinate positions for
            this object.  Use the public properties <see cref="P:ZedGraph.Location.X"/> and
            <see cref="P:ZedGraph.Location.Y"/> to access these values.  The coordinate type stored here is
            dependent upon the setting of <see cref="P:ZedGraph.Location.CoordinateFrame"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.Location._coordinateFrame">
            <summary>
            Private field to store the coordinate system to be used for defining the
            object position.  Use the public property
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> to access this value. The coordinate system
            is defined with the <see cref="T:ZedGraph.CoordType"/> enum.
            </summary>
        </member>
        <member name="M:ZedGraph.Location.#ctor">
            <summary>
            Default constructor for the <see cref="T:ZedGraph.Location"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.Location.#ctor(System.Double,System.Double,ZedGraph.CoordType)">
            <summary>
            Constructor for the <see cref="T:ZedGraph.Location"/> class that specifies the
            x, y position and the <see cref="T:ZedGraph.CoordType"/>.
            </summary>
            <remarks>
            The (x,y) position corresponds to the top-left corner;
            </remarks>
            <param name="x">The x position, specified in units of <see paramref="coordType"/>.
            </param>
            <param name="y">The y position, specified in units of <see paramref="coordType"/>.
            </param>
            <param name="coordType">The <see cref="T:ZedGraph.CoordType"/> enum that specifies the
            units for <see paramref="x"/> and <see paramref="y"/></param>
        </member>
        <member name="M:ZedGraph.Location.#ctor(System.Double,System.Double,ZedGraph.CoordType,ZedGraph.AlignH,ZedGraph.AlignV)">
            <summary>
            Constructor for the <see cref="T:ZedGraph.Location"/> class that specifies the
            x, y position and the <see cref="T:ZedGraph.CoordType"/>.
            </summary>
            <remarks>
            The (x,y) position corresponds to the top-left corner;
            </remarks>
            <param name="x">The x position, specified in units of <see paramref="coordType"/>.
            </param>
            <param name="y">The y position, specified in units of <see paramref="coordType"/>.
            </param>
            <param name="coordType">The <see cref="T:ZedGraph.CoordType"/> enum that specifies the
            units for <see paramref="x"/> and <see paramref="y"/></param>
            <param name="alignH">The <see cref="T:ZedGraph.AlignH"/> enum that specifies
            the horizontal alignment of the object with respect to the (x,y) location</param>
            <param name="alignV">The <see cref="T:ZedGraph.AlignV"/> enum that specifies
            the vertical alignment of the object with respect to the (x,y) location</param>
        </member>
        <member name="M:ZedGraph.Location.#ctor(System.Double,System.Double,System.Double,System.Double,ZedGraph.CoordType,ZedGraph.AlignH,ZedGraph.AlignV)">
            <summary>
            Constructor for the <see cref="T:ZedGraph.Location"/> class that specifies the
            (x, y), (width, height), and the <see cref="T:ZedGraph.CoordType"/>.
            </summary>
            <remarks>
            The (x,y) position
            corresponds to the starting position, the (x2, y2) coorresponds to the ending position
            (typically used for <see cref="T:ZedGraph.ArrowObj"/>'s).
            </remarks>
            <param name="x">The x position, specified in units of <see paramref="coordType"/>.
            </param>
            <param name="y">The y position, specified in units of <see paramref="coordType"/>.
            </param>
            <param name="width">The width, specified in units of <see paramref="coordType"/>.
            </param>
            <param name="height">The height, specified in units of <see paramref="coordType"/>.
            </param>
            <param name="coordType">The <see cref="T:ZedGraph.CoordType"/> enum that specifies the
            units for <see paramref="x"/> and <see paramref="y"/></param>
            <param name="alignH">The <see cref="T:ZedGraph.AlignH"/> enum that specifies
            the horizontal alignment of the object with respect to the (x,y) location</param>
            <param name="alignV">The <see cref="T:ZedGraph.AlignV"/> enum that specifies
            the vertical alignment of the object with respect to the (x,y) location</param>
        </member>
        <member name="M:ZedGraph.Location.#ctor(ZedGraph.Location)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.Location"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.Location.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Location.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Location.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Location.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Location.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.Location.Transform(ZedGraph.PaneBase)">
            <summary>
            Transform this <see cref="T:ZedGraph.Location"/> object to display device
            coordinates using the properties of the specified <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that contains
            the <see cref="T:ZedGraph.Axis"/> classes which will be used for the transform.
            </param>
            <returns>A point in display device coordinates that corresponds to the
            specified user point.</returns>
        </member>
        <member name="M:ZedGraph.Location.Transform(ZedGraph.PaneBase,System.Double,System.Double,ZedGraph.CoordType)">
            <summary>
            Transform a data point from the specified coordinate type
            (<see cref="T:ZedGraph.CoordType"/>) to display device coordinates (pixels).
            </summary>
            <remarks>
            If <see paramref="pane"/> is not of type <see cref="T:ZedGraph.GraphPane"/>, then
            only the <see cref="F:ZedGraph.CoordType.PaneFraction"/> transformation is available.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that contains
            the <see cref="T:ZedGraph.Axis"/> classes which will be used for the transform.
            </param>
            <param name="x">The x coordinate that defines the point in user
            space.</param>
            <param name="y">The y coordinate that defines the point in user
            space.</param>
            <param name="coord">A <see cref="T:ZedGraph.CoordType"/> type that defines the
            coordinate system in which the X,Y pair is defined.</param>
            <returns>A point in display device coordinates that corresponds to the
            specified user point.</returns>
        </member>
        <member name="M:ZedGraph.Location.TransformTopLeft(ZedGraph.PaneBase,System.Single,System.Single)">
            <summary>
            Transform this <see cref="T:ZedGraph.Location"/> from the coordinate system
            as specified by <see cref="P:ZedGraph.Location.CoordinateFrame"/> to the device coordinates
            of the specified <see cref="T:ZedGraph.PaneBase"/> object.
            </summary>
            <remarks>
            The returned
            <see cref="T:System.Drawing.PointF"/> struct represents the top-left corner of the
            object that honors the <see cref="T:ZedGraph.Location"/> properties.
            The <see cref="P:ZedGraph.Location.AlignH"/> and <see cref="P:ZedGraph.Location.AlignV"/> properties are honored in 
            this transformation.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that contains
            the <see cref="T:ZedGraph.Axis"/> classes which will be used for the transform.
            </param>
            <param name="width">The width of the object in device pixels</param>
            <param name="height">The height of the object in device pixels</param>
            <returns>The top-left corner of the object</returns>
        </member>
        <member name="M:ZedGraph.Location.TransformTopLeft(ZedGraph.PaneBase)">
            <summary>
            The <see cref="T:System.Drawing.PointF"/> for this object as defined by the
            <see cref="P:ZedGraph.Location.X"/> and <see cref="P:ZedGraph.Location.Y"/>
            properties.
            </summary>
            <remarks>
            This method transforms the location to output device pixel units.
            The <see cref="P:ZedGraph.Location.AlignH"/> and <see cref="P:ZedGraph.Location.AlignV"/> properties are ignored for
            this transformation (see <see cref="M:ZedGraph.Location.TransformTopLeft(ZedGraph.PaneBase,System.Single,System.Single)"/>).
            </remarks>
            <value>A <see cref="T:System.Drawing.PointF"/> in pixel units.</value>
        </member>
        <member name="M:ZedGraph.Location.TransformBottomRight(ZedGraph.PaneBase)">
            <summary>
            The <see cref="T:System.Drawing.PointF"/> for this object as defined by the
            <see cref="P:ZedGraph.Location.X2"/> and <see cref="P:ZedGraph.Location.Y2"/> properties.
            </summary>
            <remarks>
            This method transforms the location to output device pixel units.
            The <see cref="P:ZedGraph.Location.AlignH"/> and <see cref="P:ZedGraph.Location.AlignV"/> properties are ignored for
            this transformation (see <see cref="M:ZedGraph.Location.TransformTopLeft(ZedGraph.PaneBase,System.Single,System.Single)"/>).
            </remarks>
            <value>A <see cref="T:System.Drawing.PointF"/> in pixel units.</value>
        </member>
        <member name="M:ZedGraph.Location.TransformRect(ZedGraph.PaneBase)">
            <summary>
            Transform the <see cref="T:System.Drawing.RectangleF"/> for this object as defined by the
            <see cref="P:ZedGraph.Location.X"/>, <see cref="P:ZedGraph.Location.Y"/>, <see cref="P:ZedGraph.Location.Width"/>, and
            <see cref="P:ZedGraph.Location.Height"/> properties.
            </summary>
            <remarks>
            This method transforms the location to output device pixel units.
            The <see cref="P:ZedGraph.Location.AlignH"/> and <see cref="P:ZedGraph.Location.AlignV"/> properties are honored in 
            this transformation.
            </remarks>
            <value>A <see cref="T:System.Drawing.RectangleF"/> in pixel units.</value>
        </member>
        <member name="P:ZedGraph.Location.AlignH">
            <summary>
            A horizontal alignment parameter for this object specified
            using the <see cref="P:ZedGraph.Location.AlignH"/> enum type.
            </summary>
        </member>
        <member name="P:ZedGraph.Location.AlignV">
            <summary>
            A vertical alignment parameter for this object specified
            using the <see cref="P:ZedGraph.Location.AlignV"/> enum type.
            </summary>
        </member>
        <member name="P:ZedGraph.Location.CoordinateFrame">
            <summary>
            The coordinate system to be used for defining the object position
            </summary>
            <value> The coordinate system is defined with the <see cref="T:ZedGraph.CoordType"/>
            enum</value>
        </member>
        <member name="P:ZedGraph.Location.X">
            <summary>
            The x position of the object.
            </summary>
            <remarks>
            The units of this position
            are specified by the <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            The object will be aligned to this position based on the
            <see cref="P:ZedGraph.Location.AlignH"/> property.
            </remarks>
        </member>
        <member name="P:ZedGraph.Location.Y">
            <summary>
            The y position of the object.
            </summary>
            <remarks>
            The units of this position
            are specified by the <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            The object will be aligned to this position based on the
            <see cref="P:ZedGraph.Location.AlignV"/> property.
            </remarks>
        </member>
        <member name="P:ZedGraph.Location.X1">
            <summary>
            The x1 position of the object (an alias for the x position).
            </summary>
            <remarks>
            The units of this position
            are specified by the <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            The object will be aligned to this position based on the
            <see cref="P:ZedGraph.Location.AlignH"/> property.
            </remarks>
        </member>
        <member name="P:ZedGraph.Location.Y1">
            <summary>
            The y1 position of the object (an alias for the y position).
            </summary>
            <remarks>
            The units of this position
            are specified by the <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            The object will be aligned to this position based on the
            <see cref="P:ZedGraph.Location.AlignV"/> property.
            </remarks>
        </member>
        <member name="P:ZedGraph.Location.Width">
            <summary>
            The width of the object.
            </summary>
            <remarks>
            The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            </remarks>
        </member>
        <member name="P:ZedGraph.Location.Height">
            <summary>
            The height of the object.
            </summary>
            <remarks>
            The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            </remarks>
        </member>
        <member name="P:ZedGraph.Location.X2">
            <summary>
            The x2 position of the object.
            </summary>
            <remarks>
            The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            The object will be aligned to this position based on the
            <see cref="P:ZedGraph.Location.AlignH"/> property.  This position is only used for
            objects such as <see cref="T:ZedGraph.ArrowObj"/>, where it makes sense
            to have a second coordinate.  Note that the X2 position is stored
            internally as a <see cref="P:ZedGraph.Location.Width"/> offset from <see cref="P:ZedGraph.Location.X"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.Location.Y2">
            <summary>
            The y2 position of the object.
            </summary>
            <remarks>
            The units of this position
            are specified by the <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.
            The object will be aligned to this position based on the
            <see cref="P:ZedGraph.Location.AlignV"/> property.  This position is only used for
            objects such as <see cref="T:ZedGraph.ArrowObj"/>, where it makes sense
            to have a second coordinate.  Note that the Y2 position is stored
            internally as a <see cref="P:ZedGraph.Location.Height"/> offset from <see cref="P:ZedGraph.Location.Y"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.Location.Rect">
            <summary>
            The <see cref="T:System.Drawing.RectangleF"/> for this object as defined by the
            <see cref="P:ZedGraph.Location.X"/>, <see cref="P:ZedGraph.Location.Y"/>, <see cref="P:ZedGraph.Location.Width"/>, and
            <see cref="P:ZedGraph.Location.Height"/> properties.
            </summary>
            <remarks>
            Note that this method reduces the precision of the location coordinates from double
            precision to single precision.  In some cases, such as <see cref="F:ZedGraph.AxisType.Date"/>, it
            may affect the resolution of the point location.
            </remarks>
            <value>A <see cref="T:System.Drawing.RectangleF"/> in <see cref="P:ZedGraph.Location.CoordinateFrame"/>
            units.</value>
        </member>
        <member name="P:ZedGraph.Location.TopLeft">
            <summary>
            The top-left <see cref="T:System.Drawing.PointF"/> for this <see cref="T:ZedGraph.Location"/>.
            </summary>
            <remarks>
            Note that this method reduces the precision of the location coordinates from double
            precision to single precision.  In some cases, such as <see cref="F:ZedGraph.AxisType.Date"/>, it
            may affect the resolution of the point location.
            </remarks>
            <value>A <see cref="T:System.Drawing.PointF"/> in <see cref="P:ZedGraph.Location.CoordinateFrame"/> units.</value>
        </member>
        <member name="P:ZedGraph.Location.BottomRight">
            <summary>
            The bottom-right <see cref="T:System.Drawing.PointF"/> for this <see cref="T:ZedGraph.Location"/>.
            </summary>
            <remarks>
            Note that this method reduces the precision of the location coordinates from double
            precision to single precision.  In some cases, such as <see cref="F:ZedGraph.AxisType.Date"/>, it
            may affect the resolution of the point location.
            </remarks>
            <value>A <see cref="T:System.Drawing.PointF"/> in <see cref="P:ZedGraph.Location.CoordinateFrame"/> units.</value>
        </member>
        <member name="T:ZedGraph.BoxObj">
            <summary>
            A class that represents a bordered and/or filled box (rectangle) object on
            the graph.  A list of
            BoxObj objects is maintained by the <see cref="T:ZedGraph.GraphObjList"/> collection class.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.3 $ $Date: 2007/01/25 07:56:08 $ </version>
        </member>
        <member name="F:ZedGraph.BoxObj.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.BoxObj._fill">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.BoxObj"/>.  Use the public property <see cref="P:ZedGraph.BoxObj.Fill"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.BoxObj._border">
            <summary>
            Private field that determines the properties of the border around this
            <see cref="T:ZedGraph.BoxObj"/>
            Use the public property <see cref="P:ZedGraph.BoxObj.Border"/> to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.BoxObj.#ctor(System.Double,System.Double,System.Double,System.Double,System.Drawing.Color,System.Drawing.Color)">
            <overloads>Constructors for the <see cref="T:ZedGraph.BoxObj"/> object</overloads>
            <summary>
            A constructor that allows the position, border color, and solid fill color
            of the <see cref="T:ZedGraph.BoxObj"/> to be pre-specified.
            </summary>
            <param name="borderColor">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the box border</param>
            <param name="fillColor">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the box fill (will be a solid color fill)</param>
            <param name="x">The x location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="y">The y location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="width">The width of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="height">The height of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
        </member>
        <member name="M:ZedGraph.BoxObj.#ctor(System.Double,System.Double,System.Double,System.Double)">
            <summary>
            A constructor that allows the position
            of the <see cref="T:ZedGraph.BoxObj"/> to be pre-specified.  Other properties are defaulted.
            </summary>
            <param name="x">The x location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="y">The y location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="width">The width of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="height">The height of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
        </member>
        <member name="M:ZedGraph.BoxObj.#ctor">
            <summary>
            A default constructor that creates a <see cref="T:ZedGraph.BoxObj"/> using a location of (0,0),
            and a width,height of (1,1).  Other properties are defaulted.
            </summary>
        </member>
        <member name="M:ZedGraph.BoxObj.#ctor(System.Double,System.Double,System.Double,System.Double,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
            <summary>
            A constructor that allows the position, border color, and two-color
            gradient fill colors
            of the <see cref="T:ZedGraph.BoxObj"/> to be pre-specified.
            </summary>
            <param name="borderColor">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the box border</param>
            <param name="fillColor1">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the start of the box gradient fill</param>
            <param name="fillColor2">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the end of the box gradient fill</param>
            <param name="x">The x location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="y">The y location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="width">The width of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="height">The height of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
        </member>
        <member name="M:ZedGraph.BoxObj.#ctor(ZedGraph.BoxObj)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.BoxObj"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.BoxObj.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.BoxObj.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.BoxObj.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.BoxObj.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.BoxObj.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.BoxObj.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single)">
            <summary>
            Render this object to the specified <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <remarks>
            This method is normally only called by the Draw method
            of the parent <see cref="T:ZedGraph.GraphObjList"/> collection object.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.BoxObj.PointInBox(System.Drawing.PointF,ZedGraph.PaneBase,System.Drawing.Graphics,System.Single)">
            <summary>
            Determine if the specified screen point lies inside the bounding box of this
            <see cref="T:ZedGraph.BoxObj"/>.
            </summary>
            <param name="pt">The screen point, in pixels</param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>true if the point lies in the bounding box, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.BoxObj.GetCoords(ZedGraph.PaneBase,System.Drawing.Graphics,System.Single,System.String@,System.String@)">
            <summary>
            Determines the shape type and Coords values for this GraphObj
            </summary>
        </member>
        <member name="P:ZedGraph.BoxObj.Fill">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.BoxObj"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.BoxObj.Border">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Border"/> object, which
            determines the properties of the border around this
            <see cref="T:ZedGraph.BoxObj"/>
            </summary>
        </member>
        <member name="T:ZedGraph.BoxObj.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.ArrowObj"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.BoxObj.Default.PenWidth">
            <summary>
            The default pen width used for the <see cref="T:ZedGraph.BoxObj"/> border
            (<see cref="P:ZedGraph.LineBase.Width"/> property).  Units are points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.BoxObj.Default.BorderColor">
            <summary>
            The default color used for the <see cref="T:ZedGraph.BoxObj"/> border
            (<see cref="P:ZedGraph.LineBase.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.BoxObj.Default.FillColor">
            <summary>
            The default color used for the <see cref="T:ZedGraph.BoxObj"/> fill
            (<see cref="P:ZedGraph.Fill.Color"/> property).
            </summary>
        </member>
        <member name="T:ZedGraph.Symbol">
            <summary>
            This class handles the drawing of the curve <see cref="T:ZedGraph.Symbol"/> objects.
            The symbols are the small shapes that appear over each defined point
            along the curve.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.33 $ $Date: 2007/01/25 07:56:09 $ </version>
        </member>
        <member name="F:ZedGraph.Symbol.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol._size">
            <summary>
            Private field that stores the size of this
            <see cref="T:ZedGraph.Symbol"/> in points (1/72 inch).  Use the public
            property <see cref="P:ZedGraph.Symbol.Size"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol._type">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.SymbolType"/> for this
            <see cref="T:ZedGraph.Symbol"/>.  Use the public
            property <see cref="P:ZedGraph.Symbol.Type"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol._isAntiAlias">
            <summary>
            private field that determines if the symbols are drawn using
            Anti-Aliasing capabilities from the <see cref="T:System.Drawing.Graphics"/> class.
            Use the public property <see cref="P:ZedGraph.Symbol.IsAntiAlias"/> to access
            this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol._isVisible">
            <summary>
            Private field that stores the visibility of this
            <see cref="T:ZedGraph.Symbol"/>.  Use the public
            property <see cref="P:ZedGraph.Symbol.IsVisible"/> to access this value.  If this value is
            false, the symbols will not be shown (but the <see cref="T:ZedGraph.Line"/> may
            still be shown).
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol._fill">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.Symbol"/>.  Use the public property <see cref="P:ZedGraph.Symbol.Fill"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol._border">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Border"/> data for this
            <see cref="T:ZedGraph.Symbol"/>.  Use the public property <see cref="P:ZedGraph.Symbol.Border"/> to
            access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.Symbol.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.Symbol"/> properties to default
            values as defined in the <see cref="T:ZedGraph.Symbol.Default"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.Symbol.#ctor(ZedGraph.SymbolType,System.Drawing.Color)">
            <summary>
            Default constructor that sets the <see cref="T:ZedGraph.SymbolType"/> and
            <see cref="T:System.Drawing.Color"/> as specified, and the remaining
            <see cref="T:ZedGraph.Symbol"/> properties to default
            values as defined in the <see cref="T:ZedGraph.Symbol.Default"/> class.
            </summary>
            <param name="type">A <see cref="T:ZedGraph.SymbolType"/> enum value
            indicating the shape of the symbol</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value indicating
            the color of the symbol
            </param>
        </member>
        <member name="M:ZedGraph.Symbol.#ctor(ZedGraph.Symbol)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The Symbol object from which to copy</param>
        </member>
        <member name="M:ZedGraph.Symbol.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Symbol.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Symbol.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Symbol.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Symbol.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.Symbol.DrawSymbol(System.Drawing.Graphics,System.Single,System.Single,System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Pen,System.Drawing.Brush)">
            <summary>
            Draw the <see cref="T:ZedGraph.Symbol"/> to the specified <see cref="T:System.Drawing.Graphics"/> device
            at the specified location.  This routine draws a single symbol.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="x">The x position of the center of the symbol in
            pixel units</param>
            <param name="y">The y position of the center of the symbol in
            pixel units</param>
            <param name="path">A <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> previously constructed by
            <see cref="M:ZedGraph.Symbol.MakePath(System.Drawing.Graphics,System.Single)"/> for this symbol</param>
            <param name="pen">A <see cref="T:System.Drawing.Pen"/> class representing the standard pen for this symbol</param>
            <param name="brush">A <see cref="T:System.Drawing.Brush"/> class representing a default solid brush for this symbol
            If this symbol uses a <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/>, it will be created on the fly for
            each point, since it has to be scaled to the individual point coordinates.</param>
        </member>
        <member name="M:ZedGraph.Symbol.DrawSymbol(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Single,System.Single,System.Boolean,ZedGraph.PointPair)">
            <summary>
            Draw the <see cref="T:ZedGraph.Symbol"/> to the specified <see cref="T:System.Drawing.Graphics"/> device
            at the specified location.  This routine draws a single symbol.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="x">The x position of the center of the symbol in
            pixel units</param>
            <param name="y">The y position of the center of the symbol in
            pixel units</param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.
            </param>
            <param name="dataValue">The data value to be used for a value-based
            color gradient.  This is only applicable for <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/> or <see cref="F:ZedGraph.FillType.GradientByZ"/>.</param>
            <param name="isSelected">Indicates that the <see cref="T:ZedGraph.Symbol"/> should be drawn
            with attributes from the <see cref="T:ZedGraph.Selection"/> class.
            </param>
        </member>
        <member name="M:ZedGraph.Symbol.MakePath(System.Drawing.Graphics,System.Single)">
            <summary>
            Create a <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> struct for the current symbol based on the
            specified scaleFactor and assuming the symbol will be centered at position 0,0.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.</param>
            <returns>Returns the <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> for the current symbol</returns>
        </member>
        <member name="M:ZedGraph.Symbol.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.LineItem,System.Single,System.Boolean)">
            <summary>
            Draw this <see cref="T:ZedGraph.CurveItem"/> to the specified <see cref="T:System.Drawing.Graphics"/>
            device as a symbol at each defined point.  The routine
            only draws the symbols; the lines are draw by the
            <see cref="M:ZedGraph.Line.DrawCurve(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.CurveItem,System.Single)"/> method.  This method
            is normally only called by the Draw method of the
            <see cref="T:ZedGraph.CurveItem"/> object
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.LineItem"/> representing this
            curve.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="isSelected">Indicates that the <see cref="T:ZedGraph.Symbol"/> should be drawn
            with attributes from the <see cref="T:ZedGraph.Selection"/> class.
            </param>
        </member>
        <member name="P:ZedGraph.Symbol.Size">
            <summary>
            Gets or sets the size of the <see cref="T:ZedGraph.Symbol"/>
            </summary>
            <value>Size in points (1/72 inch)</value>
            <seealso cref="F:ZedGraph.Symbol.Default.Size"/>
        </member>
        <member name="P:ZedGraph.Symbol.Type">
            <summary>
            Gets or sets the type (shape) of the <see cref="T:ZedGraph.Symbol"/>
            </summary>
            <value>A <see cref="T:ZedGraph.SymbolType"/> enum value indicating the shape</value>
            <seealso cref="F:ZedGraph.Symbol.Default.Type"/>
        </member>
        <member name="P:ZedGraph.Symbol.IsAntiAlias">
            <summary>
            Gets or sets a value that determines if the symbols are drawn using
            Anti-Aliasing capabilities from the <see cref="T:System.Drawing.Graphics"/> class.
            </summary>
            <remarks>
            If this value is set to true, then the <see cref="P:System.Drawing.Graphics.SmoothingMode"/>
            property will be set to <see cref="F:System.Drawing.Drawing2D.SmoothingMode.HighQuality"/> only while
            this <see cref="T:ZedGraph.Symbol"/> is drawn.  A value of false will leave the value of
            <see cref="P:System.Drawing.Graphics.SmoothingMode"/> unchanged.
            </remarks>
        </member>
        <member name="P:ZedGraph.Symbol.IsVisible">
            <summary>
            Gets or sets a property that shows or hides the <see cref="T:ZedGraph.Symbol"/>.
            </summary>
            <value>true to show the symbol, false to hide it</value>
            <seealso cref="F:ZedGraph.Symbol.Default.IsVisible"/>
        </member>
        <member name="P:ZedGraph.Symbol.Fill">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.Symbol"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.Symbol.Border">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Border"/> data for this
            <see cref="T:ZedGraph.Symbol"/>, which controls the border outline of the symbol.
            </summary>
        </member>
        <member name="T:ZedGraph.Symbol.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.Symbol"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol.Default.Size">
            <summary>
            The default size for curve symbols (<see cref="P:ZedGraph.Symbol.Size"/> property),
            in units of points.
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol.Default.PenWidth">
            <summary>
            The default pen width to be used for drawing curve symbols
            (<see cref="P:ZedGraph.LineBase.Width"/> property).  Units are points.
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol.Default.FillColor">
            <summary>
            The default color for filling in this <see cref="T:ZedGraph.Symbol"/>
            (<see cref="P:ZedGraph.Fill.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol.Default.FillBrush">
            <summary>
            The default custom brush for filling in this <see cref="T:ZedGraph.Symbol"/>
            (<see cref="P:ZedGraph.Fill.Brush"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol.Default.FillType">
            <summary>
            The default fill mode for the curve (<see cref="P:ZedGraph.Fill.Type"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol.Default.Type">
            <summary>
            The default symbol type for curves (<see cref="P:ZedGraph.Symbol.Type"/> property).
            This is defined as a <see cref="T:ZedGraph.SymbolType"/> enumeration.
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol.Default.IsAntiAlias">
            <summary>
            The default value for the <see cref="P:ZedGraph.Symbol.IsAntiAlias"/>
            property.
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol.Default.IsVisible">
            <summary>
            The default display mode for symbols (<see cref="P:ZedGraph.Symbol.IsVisible"/> property).
            true to display symbols, false to hide them.
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol.Default.IsBorderVisible">
            <summary>
            The default for drawing frames around symbols (<see cref="P:ZedGraph.LineBase.IsVisible"/> property).
            true to display symbol frames, false to hide them.
            </summary>
        </member>
        <member name="F:ZedGraph.Symbol.Default.BorderColor">
            <summary>
            The default color for drawing symbols (<see cref="P:ZedGraph.LineBase.Color"/> property).
            </summary>
        </member>
        <member name="T:ZedGraph.RadarPointList">
            <summary>
            A class containing a set of data values to be plotted as a RadarPlot.
            This class will effectively convert the data into <see cref="T:ZedGraph.PointPair"/> objects
            by converting the polar coordinates to rectangular coordinates
            </summary>
            <seealso cref="T:ZedGraph.BasicArrayPointList"/>
            <seealso cref="T:ZedGraph.IPointList"/>
            <seealso cref="T:ZedGraph.IPointListEdit"/>
            
            <author>Jerry Vos and John Champion</author>
            <version> $Revision: 3.4 $ $Date: 2006/08/25 05:19:09 $ </version>
        </member>
        <member name="M:ZedGraph.RadarPointList.GetAt(System.Int32)">
            <summary>
            Get the raw data
            </summary>
            <param name="index"></param>
            <returns></returns>
        </member>
        <member name="M:ZedGraph.RadarPointList.#ctor">
            <summary>
            Default Constructor
            </summary>
        </member>
        <member name="M:ZedGraph.RadarPointList.#ctor(ZedGraph.RadarPointList)">
            <summary>
            Copy Constructor
            </summary>
        </member>
        <member name="M:ZedGraph.RadarPointList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.RadarPointList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.RadarPointList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.RadarPointList.Add(System.Double,System.Double)">
            <summary>
            Add a single point to the <see cref="T:ZedGraph.RadarPointList"/> from two values of type double.
            </summary>
            <param name="r">The radial coordinate value</param>
            <param name="z">The 'Z' coordinate value, which is not normally used for plotting,
            but can be used for <see cref="F:ZedGraph.FillType.GradientByZ"/> type fills</param>
            <returns>The zero-based ordinal index where the point was added in the list.</returns>
        </member>
        <member name="P:ZedGraph.RadarPointList.Item(System.Int32)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.PointPair"/> object by
            its ordinal position in the list.  This method does the calculations
            to convert the data from polar to rectangular coordinates.
            </summary>
            <param name="index">The ordinal position (zero-based) of the
            <see cref="T:ZedGraph.PointPair"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.PointPair"/> object reference.</value>
        </member>
        <member name="P:ZedGraph.RadarPointList.Count">
            <summary>
            gets the number of points available in the list
            </summary>
        </member>
        <member name="T:ZedGraph.EllipseObj">
            <summary>
            A class that represents a bordered and/or filled ellipse object on
            the graph.  A list of EllipseObj objects is maintained by the
            <see cref="T:ZedGraph.GraphObjList"/> collection class.  The ellipse is defined
            as the ellipse that would be contained by the rectangular box as
            defined by the <see cref="T:ZedGraph.Location"/> property.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.3 $ $Date: 2007/01/25 07:56:08 $ </version>
        </member>
        <member name="F:ZedGraph.EllipseObj.schema3">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.EllipseObj.#ctor(System.Double,System.Double,System.Double,System.Double)">
            <overloads>Constructors for the <see cref="T:ZedGraph.EllipseObj"/> object</overloads>
            <summary>
            A constructor that allows the position and size
            of the <see cref="T:ZedGraph.EllipseObj"/> to be pre-specified.  Other properties are defaulted.
            </summary>
            <param name="x">The x location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="y">The y location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="width">The width of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="height">The height of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
        </member>
        <member name="M:ZedGraph.EllipseObj.#ctor">
            <summary>
            A default constructor that places the <see cref="T:ZedGraph.EllipseObj"/> at location (0,0),
            with width/height of (1,1).  Other properties are defaulted.
            </summary>
        </member>
        <member name="M:ZedGraph.EllipseObj.#ctor(System.Double,System.Double,System.Double,System.Double,System.Drawing.Color,System.Drawing.Color)">
            <summary>
            A constructor that allows the position, border color, and solid fill color
            of the <see cref="T:ZedGraph.EllipseObj"/> to be pre-specified.
            </summary>
            <param name="borderColor">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the ellipse border</param>
            <param name="fillColor">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the ellipse fill (will be a solid color fill)</param>
            <param name="x">The x location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="y">The y location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="width">The width of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="height">The height of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
        </member>
        <member name="M:ZedGraph.EllipseObj.#ctor(System.Double,System.Double,System.Double,System.Double,System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
            <summary>
            A constructor that allows the position, border color, and two-color
            gradient fill colors
            of the <see cref="T:ZedGraph.EllipseObj"/> to be pre-specified.
            </summary>
            <param name="borderColor">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the ellipse border</param>
            <param name="fillColor1">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the start of the ellipse gradient fill</param>
            <param name="fillColor2">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the end of the ellipse gradient fill</param>
            <param name="x">The x location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="y">The y location for this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="width">The width of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
            <param name="height">The height of this <see cref="T:ZedGraph.BoxObj"/>.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.</param>
        </member>
        <member name="M:ZedGraph.EllipseObj.#ctor(ZedGraph.BoxObj)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.EllipseObj"/> object from
            which to copy</param>
        </member>
        <member name="M:ZedGraph.EllipseObj.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.EllipseObj.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.EllipseObj.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.EllipseObj.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.EllipseObj.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.EllipseObj.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single)">
            <summary>
            Render this object to the specified <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <remarks>
            This method is normally only called by the Draw method
            of the parent <see cref="T:ZedGraph.GraphObjList"/> collection object.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.EllipseObj.PointInBox(System.Drawing.PointF,ZedGraph.PaneBase,System.Drawing.Graphics,System.Single)">
            <summary>
            Determine if the specified screen point lies inside the bounding box of this
            <see cref="T:ZedGraph.BoxObj"/>.
            </summary>
            <param name="pt">The screen point, in pixels</param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>true if the point lies in the bounding box, false otherwise</returns>
        </member>
        <member name="T:ZedGraph.BarItem">
            <summary>
            Encapsulates a bar type that displays vertical or horizontal bars
            </summary>
            <remarks>
            The orientation of the bars depends on the state of
            <see cref="P:ZedGraph.BarSettings.Base"/>, and the bars can be stacked or
            clustered, depending on the state of <see cref="P:ZedGraph.BarSettings.Type"/>
            </remarks>
            <author> John Champion </author>
            <version> $Revision: 3.22 $ $Date: 2007/01/21 07:49:05 $ </version>
        </member>
        <member name="F:ZedGraph.BarItem.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.BarItem._bar">
            <summary>
            Private field that stores a reference to the <see cref="T:ZedGraph.Bar"/>
            class defined for this <see cref="T:ZedGraph.BarItem"/>.  Use the public
            property <see cref="P:ZedGraph.BarItem.Bar"/> to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.BarItem.IsZIncluded(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the Z data range should be included in the axis scaling calculations.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the Z data are included, false otherwise</value>
        </member>
        <member name="M:ZedGraph.BarItem.IsXIndependent(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the X axis is the independent axis for this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the X axis is independent, false otherwise</value>
        </member>
        <member name="M:ZedGraph.BarItem.#ctor(System.String)">
            <summary>
            Create a new <see cref="T:ZedGraph.BarItem"/>, specifying only the legend label for the bar.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
        </member>
        <member name="M:ZedGraph.BarItem.#ctor(System.String,System.Double[],System.Double[],System.Drawing.Color)">
            <summary>
            Create a new <see cref="T:ZedGraph.BarItem"/> using the specified properties.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
            <param name="x">An array of double precision values that define
            the independent (X axis) values for this curve</param>
            <param name="y">An array of double precision values that define
            the dependent (Y axis) values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="P:ZedGraph.Bar.Fill"/> and <see cref="P:ZedGraph.Bar.Border"/> properties.
            </param>
        </member>
        <member name="M:ZedGraph.BarItem.#ctor(System.String,ZedGraph.IPointList,System.Drawing.Color)">
            <summary>
            Create a new <see cref="T:ZedGraph.BarItem"/> using the specified properties.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="P:ZedGraph.Bar.Fill"/> and <see cref="P:ZedGraph.Bar.Border"/> properties.
            </param>
        </member>
        <member name="M:ZedGraph.BarItem.#ctor(ZedGraph.BarItem)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.BarItem"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.BarItem.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.BarItem.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.BarItem.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.BarItem.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.BarItem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.BarItem.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.BarItem"/> to the specified
            <see cref="T:System.Drawing.Graphics"/> device.  This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.CurveList"/>
            collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="pos">The ordinal position of the current <see cref="P:ZedGraph.BarItem.Bar"/>
            curve.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.BarItem.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            Draw a legend key entry for this <see cref="T:ZedGraph.BarItem"/> at the specified location
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="rect">The <see cref="T:System.Drawing.RectangleF"/> struct that specifies the
            location for the legend key</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.BarItem.CreateBarLabels(ZedGraph.GraphPane,System.Boolean,System.String)">
            <summary>
            Create a <see cref="T:ZedGraph.TextObj"/> for each bar in the <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
            <remarks>
            This method will go through the bars, create a label that corresponds to the bar value,
            and place it on the graph depending on user preferences.  This works for horizontal or
            vertical bars in clusters or stacks, but only for <see cref="T:ZedGraph.BarItem"/> types.  This method
            does not apply to <see cref="T:ZedGraph.ErrorBarItem"/> or <see cref="T:ZedGraph.HiLowBarItem"/> objects.
            Call this method only after calling <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/>.
            </remarks>
            <param name="pane">The GraphPane in which to place the text labels.</param>
            <param name="isBarCenter">true to center the labels inside the bars, false to
            place the labels just above the top of the bar.</param>
            <param name="valueFormat">The double.ToString string format to use for creating
            the labels.
            </param>
        </member>
        <member name="M:ZedGraph.BarItem.CreateBarLabels(ZedGraph.GraphPane,System.Boolean,System.String,System.String,System.Single,System.Drawing.Color,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Create a <see cref="T:ZedGraph.TextObj"/> for each bar in the <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
            <remarks>
            This method will go through the bars, create a label that corresponds to the bar value,
            and place it on the graph depending on user preferences.  This works for horizontal or
            vertical bars in clusters or stacks, but only for <see cref="T:ZedGraph.BarItem"/> types.  This method
            does not apply to <see cref="T:ZedGraph.ErrorBarItem"/> or <see cref="T:ZedGraph.HiLowBarItem"/> objects.
            Call this method only after calling <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/>.
            </remarks>
            <param name="pane">The GraphPane in which to place the text labels.</param>
            <param name="isBarCenter">true to center the labels inside the bars, false to
            place the labels just above the top of the bar.</param>
            <param name="valueFormat">The double.ToString string format to use for creating
            the labels.
            </param>
            <param name="fontColor">The color in which to draw the labels</param>
            <param name="fontFamily">The string name of the font family to use for the labels</param>
            <param name="fontSize">The floating point size of the font, in scaled points</param>
            <param name="isBold">true for a bold font type, false otherwise</param>
            <param name="isItalic">true for an italic font type, false otherwise</param>
            <param name="isUnderline">true for an underline font type, false otherwise</param>
        </member>
        <member name="M:ZedGraph.BarItem.GetCoords(ZedGraph.GraphPane,System.Int32,System.String@)">
            <summary>
            Determine the coords for the rectangle associated with a specified point for 
            this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> to which this curve belongs</param>
            <param name="i">The index of the point of interest</param>
            <param name="coords">A list of coordinates that represents the "rect" for
            this point (used in an html AREA tag)</param>
            <returns>true if it's a valid point, false otherwise</returns>
        </member>
        <member name="P:ZedGraph.BarItem.Bar">
            <summary>
            Gets a reference to the <see cref="T:ZedGraph.Bar"/> class defined
            for this <see cref="T:ZedGraph.BarItem"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.PolyObj">
            <summary>
            A class that represents a bordered and/or filled polygon object on
            the graph.  A list of <see cref="T:ZedGraph.PolyObj"/> objects is maintained by
            the <see cref="T:ZedGraph.GraphObjList"/> collection class.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.4 $ $Date: 2007/01/25 07:56:09 $ </version>
        </member>
        <member name="F:ZedGraph.PolyObj.schema3">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.PolyObj._isClosedFigure">
            <summary>
            private value that determines if the polygon will be automatically closed.
            true to close the figure, false to leave it "open."  Use the public property
            <see cref="P:ZedGraph.PolyObj.IsClosedFigure"/> to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.PolyObj.#ctor(ZedGraph.PointD[],System.Drawing.Color,System.Drawing.Color)">
            <overloads>Constructors for the <see cref="T:ZedGraph.PolyObj"/> object</overloads>
            <summary>
            A constructor that allows the position, border color, and solid fill color
            of the <see cref="T:ZedGraph.PolyObj"/> to be pre-specified.
            </summary>
            <param name="borderColor">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the box border</param>
            <param name="fillColor">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the box fill (will be a solid color fill)</param>
            <param name="points">The <see cref="T:ZedGraph.PointD"/> array that defines
            the polygon.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.
            </param>
        </member>
        <member name="M:ZedGraph.PolyObj.#ctor(ZedGraph.PointD[])">
            <summary>
            A constructor that allows the position
            of the <see cref="T:ZedGraph.PolyObj"/> to be pre-specified.  Other properties are defaulted.
            </summary>
            <param name="points">The <see cref="T:ZedGraph.PointD"/> array that defines
            the polygon.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.
            </param>
        </member>
        <member name="M:ZedGraph.PolyObj.#ctor">
            <summary>
            A default constructor that creates a <see cref="T:ZedGraph.PolyObj"/> from an empty
            <see cref="T:ZedGraph.PointD"/> array.  Other properties are defaulted.
            </summary>
        </member>
        <member name="M:ZedGraph.PolyObj.#ctor(ZedGraph.PointD[],System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
            <summary>
            A constructor that allows the position, border color, and two-color
            gradient fill colors
            of the <see cref="T:ZedGraph.PolyObj"/> to be pre-specified.
            </summary>
            <param name="borderColor">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the box border</param>
            <param name="fillColor1">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the start of the box gradient fill</param>
            <param name="fillColor2">An arbitrary <see cref="T:System.Drawing.Color"/> specification
            for the end of the box gradient fill</param>
            <param name="points">The <see cref="T:ZedGraph.PointD"/> array that defines
            the polygon.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.
            </param>
        </member>
        <member name="M:ZedGraph.PolyObj.#ctor(ZedGraph.PolyObj)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.PolyObj"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.PolyObj.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.PolyObj.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.PolyObj.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.PolyObj.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.PolyObj.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.PolyObj.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single)">
            <summary>
            Render this object to the specified <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <remarks>
            This method is normally only called by the Draw method
            of the parent <see cref="T:ZedGraph.GraphObjList"/> collection object.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.PolyObj.PointInBox(System.Drawing.PointF,ZedGraph.PaneBase,System.Drawing.Graphics,System.Single)">
            <summary>
            Determine if the specified screen point lies inside the bounding box of this
            <see cref="T:ZedGraph.PolyObj"/>.
            </summary>
            <param name="pt">The screen point, in pixels</param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>true if the point lies in the bounding box, false otherwise</returns>
        </member>
        <member name="P:ZedGraph.PolyObj.Points">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.PointD"/> array that defines
            the polygon.  This will be in units determined by
            <see cref="P:ZedGraph.Location.CoordinateFrame"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.PolyObj.IsClosedFigure">
            <summary>
            Gets or sets a value that determines if the polygon will be automatically closed.
            true to close the figure, false to leave it "open."
            </summary>
            <remarks>
            This boolean determines whether or not the CloseFigure() method will be called
            to fully close the path of the polygon.  This value defaults to true, and for any
            closed figure it should fine.  If you want to draw a line that does not close into
            a shape, then you should set this value to false.  For a figure that is naturally
            closed (e.g., the first point of the polygon is the same as the last point),
            leaving this value set to false may result in minor pixel artifacts due to
            rounding.
            </remarks>
        </member>
        <member name="T:ZedGraph.Line">
            <summary>
            A class representing all the characteristics of the Line
            segments that make up a curve on the graph.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.40 $ $Date: 2007/03/17 18:43:44 $ </version>
        </member>
        <member name="F:ZedGraph.Line.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Line._isSmooth">
            <summary>
            Private field that stores the smoothing flag for this
            <see cref="T:ZedGraph.Line"/>.  Use the public
            property <see cref="P:ZedGraph.Line.IsSmooth"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Line._smoothTension">
            <summary>
            Private field that stores the smoothing tension
            for this <see cref="T:ZedGraph.Line"/>.  Use the public property
            <see cref="P:ZedGraph.Line.SmoothTension"/> to access this value.
            </summary>
            <value>A floating point value indicating the level of smoothing.
            0.0F for no smoothing, 1.0F for lots of smoothing, &gt;1.0 for odd
            smoothing.</value>
            <seealso cref="P:ZedGraph.Line.IsSmooth"/>
            <seealso cref="F:ZedGraph.Line.Default.IsSmooth"/>
            <seealso cref="F:ZedGraph.Line.Default.SmoothTension"/>
        </member>
        <member name="F:ZedGraph.Line._stepType">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.StepType"/> for this
            <see cref="T:ZedGraph.CurveItem"/>.  Use the public
            property <see cref="P:ZedGraph.Line.StepType"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Line._fill">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.Line"/>.  Use the public property <see cref="P:ZedGraph.Line.Fill"/> to
            access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.Line.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.Line"/> properties to default
            values as defined in the <see cref="T:ZedGraph.Line.Default"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.Line.#ctor(System.Drawing.Color)">
            <summary>
            Constructor that sets the color property to the specified value, and sets
            the remaining <see cref="T:ZedGraph.Line"/> properties to default
            values as defined in the <see cref="T:ZedGraph.Line.Default"/> class.
            </summary>
            <param name="color">The color to assign to this new Line object</param>
        </member>
        <member name="M:ZedGraph.Line.#ctor(ZedGraph.Line)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The Line object from which to copy</param>
        </member>
        <member name="M:ZedGraph.Line.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Line.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Line.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Line.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Line.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.Line.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.CurveItem,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.Line"/> to the specified
            <see cref="T:System.Drawing.Graphics"/> device.  This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.LineItem"/> object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.LineItem"/> representing this
            curve.</param>
        </member>
        <member name="M:ZedGraph.Line.DrawSegment(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Render a single <see cref="T:ZedGraph.Line"/> segment to the specified
            <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="x1">The x position of the starting point that defines the
            line segment in screen pixel units</param>
            <param name="y1">The y position of the starting point that defines the
            line segment in screen pixel units</param>
            <param name="x2">The x position of the ending point that defines the
            line segment in screen pixel units</param>
            <param name="y2">The y position of the ending point that defines the
            line segment in screen pixel units</param>
        </member>
        <member name="M:ZedGraph.Line.DrawSticks(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.CurveItem,System.Single)">
            <summary>
            Render the <see cref="T:ZedGraph.Line"/>'s as vertical sticks (from a <see cref="T:ZedGraph.StickItem"/>) to
            the specified <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.CurveItem"/> representing this
            curve.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.Line.DrawSmoothFilledCurve(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.CurveItem,System.Single)">
            <summary>
            Draw the this <see cref="T:ZedGraph.CurveItem"/> to the specified <see cref="T:System.Drawing.Graphics"/>
            device using the specified smoothing property (<see cref="P:ZedGraph.Line.SmoothTension"/>).
            The routine draws the line segments and the area fill (if any, see <see cref="T:ZedGraph.FillType"/>;
            the symbols are drawn by the <see cref="M:ZedGraph.Symbol.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.LineItem,System.Single,System.Boolean)"/> method.  This method
            is normally only called by the Draw method of the
            <see cref="T:ZedGraph.CurveItem"/> object.  Note that the <see cref="P:ZedGraph.Line.StepType"/> property
            is ignored for smooth lines (e.g., when <see cref="P:ZedGraph.Line.IsSmooth"/> is true).
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.LineItem"/> representing this
            curve.</param>
        </member>
        <member name="M:ZedGraph.Line.DrawCurve(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.CurveItem,System.Single)">
            <summary>
            Draw the this <see cref="T:ZedGraph.CurveItem"/> to the specified <see cref="T:System.Drawing.Graphics"/>
            device.  The format (stair-step or line) of the curve is
            defined by the <see cref="P:ZedGraph.Line.StepType"/> property.  The routine
            only draws the line segments; the symbols are drawn by the
            <see cref="M:ZedGraph.Symbol.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.LineItem,System.Single,System.Boolean)"/> method.  This method
            is normally only called by the Draw method of the
            <see cref="T:ZedGraph.CurveItem"/> object
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.LineItem"/> representing this
            curve.</param>
        </member>
        <member name="M:ZedGraph.Line.InterpolatePoint(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.CurveItem,ZedGraph.PointPair,System.Single,System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            This method just handles the case where one or more of the coordinates are outrageous,
            or GDI+ threw an exception.  This method attempts to correct the outrageous coordinates by
            interpolating them to a point (along the original line) that lies at the edge of the ChartRect
            so that GDI+ will handle it properly.  GDI+ will throw an exception, or just plot the data
            incorrectly if the coordinates are too large (empirically, this appears to be when the
            coordinate value is greater than 5,000,000 or less than -5,000,000).  Although you typically
            would not see coordinates like this, if you repeatedly zoom in on a ZedGraphControl, eventually
            all your points will be way outside the bounds of the plot.
            </summary>
        </member>
        <member name="M:ZedGraph.Line.BuildPointsArray(ZedGraph.GraphPane,ZedGraph.CurveItem,System.Drawing.PointF[]@,System.Int32@)">
            <summary>
            Build an array of <see cref="T:System.Drawing.PointF"/> values (pixel coordinates) that represents
            the current curve.  Note that this drawing routine ignores <see cref="F:ZedGraph.PointPairBase.Missing"/>
            values, but it does not "break" the line to indicate values are missing.
            </summary>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.</param>
            <param name="curve">A <see cref="T:ZedGraph.LineItem"/> representing this
            curve.</param>
            <param name="arrPoints">An array of <see cref="T:System.Drawing.PointF"/> values in pixel
            coordinates representing the current curve.</param>
            <param name="count">The number of points contained in the "arrPoints"
            parameter.</param>
            <returns>true for a successful points array build, false for data problems</returns>
        </member>
        <member name="M:ZedGraph.Line.BuildLowPointsArray(ZedGraph.GraphPane,ZedGraph.CurveItem,System.Drawing.PointF[]@,System.Int32@)">
            <summary>
            Build an array of <see cref="T:System.Drawing.PointF"/> values (pixel coordinates) that represents
            the low values for the current curve.
            </summary>
            <remarks>Note that this drawing routine ignores <see cref="F:ZedGraph.PointPairBase.Missing"/>
            values, but it does not "break" the line to indicate values are missing.
            </remarks>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.</param>
            <param name="curve">A <see cref="T:ZedGraph.LineItem"/> representing this
            curve.</param>
            <param name="arrPoints">An array of <see cref="T:System.Drawing.PointF"/> values in pixel
            coordinates representing the current curve.</param>
            <param name="count">The number of points contained in the "arrPoints"
            parameter.</param>
            <returns>true for a successful points array build, false for data problems</returns>
        </member>
        <member name="M:ZedGraph.Line.CloseCurve(ZedGraph.GraphPane,ZedGraph.CurveItem,System.Drawing.PointF[],System.Int32,System.Double,System.Drawing.Drawing2D.GraphicsPath)">
            <summary>
            Close off a <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> that defines a curve
            </summary>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.</param>
            <param name="curve">A <see cref="T:ZedGraph.LineItem"/> representing this
            curve.</param>
            <param name="arrPoints">An array of <see cref="T:System.Drawing.PointF"/> values in screen pixel
            coordinates representing the current curve.</param>
            <param name="count">The number of points contained in the "arrPoints"
            parameter.</param>
            <param name="yMin">The Y axis value location where the X axis crosses.</param>
            <param name="path">The <see cref="T:System.Drawing.Drawing2D.GraphicsPath"/> class that represents the curve.</param>
        </member>
        <member name="P:ZedGraph.Line.IsSmooth">
            <summary>
            Gets or sets a property that determines if this <see cref="T:ZedGraph.Line"/>
            will be drawn smooth.  The "smoothness" is controlled by
            the <see cref="P:ZedGraph.Line.SmoothTension"/> property.
            </summary>
            <value>true to smooth the line, false to just connect the dots
            with linear segments</value>
            <seealso cref="P:ZedGraph.Line.SmoothTension"/>
            <seealso cref="F:ZedGraph.Line.Default.IsSmooth"/>
            <seealso cref="F:ZedGraph.Line.Default.SmoothTension"/>
        </member>
        <member name="P:ZedGraph.Line.SmoothTension">
            <summary>
            Gets or sets a property that determines the smoothing tension
            for this <see cref="T:ZedGraph.Line"/>.  This property is only used if
            <see cref="P:ZedGraph.Line.IsSmooth"/> is true.  A tension value 0.0 will just
            draw ordinary line segments like an unsmoothed line.  A tension
            value of 1.0 will be smooth.  Values greater than 1.0 will generally
            give odd results.
            </summary>
            <value>A floating point value indicating the level of smoothing.
            0.0F for no smoothing, 1.0F for lots of smoothing, &gt;1.0 for odd
            smoothing.</value>
            <seealso cref="P:ZedGraph.Line.IsSmooth"/>
            <seealso cref="F:ZedGraph.Line.Default.IsSmooth"/>
            <seealso cref="F:ZedGraph.Line.Default.SmoothTension"/>
        </member>
        <member name="P:ZedGraph.Line.StepType">
            <summary>
            Determines if the <see cref="T:ZedGraph.CurveItem"/> will be drawn by directly connecting the
            points from the <see cref="P:ZedGraph.CurveItem.Points"/> data collection,
            or if the curve will be a "stair-step" in which the points are
            connected by a series of horizontal and vertical lines that
            represent discrete, constant values.  Note that the values can
            be forward oriented <c>ForwardStep</c> (<see cref="T:ZedGraph.StepType"/>) or
            rearward oriented <c>RearwardStep</c>.
            That is, the points are defined at the beginning or end
            of the constant value for which they apply, respectively.
            The <see cref="P:ZedGraph.Line.StepType"/> property is ignored for lines
            that have <see cref="P:ZedGraph.Line.IsSmooth"/> set to true.
            </summary>
            <value><see cref="T:ZedGraph.StepType"/> enum value</value>
            <seealso cref="F:ZedGraph.Line.Default.StepType"/>
        </member>
        <member name="P:ZedGraph.Line.Fill">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.Line"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.Line.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.Line"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.Line.Default.Color">
            <summary>
            The default color for curves (line segments connecting the points).
            This is the default value for the <see cref="P:ZedGraph.LineBase.Color"/> property.
            </summary>
        </member>
        <member name="F:ZedGraph.Line.Default.FillColor">
            <summary>
            The default color for filling in the area under the curve
            (<see cref="P:ZedGraph.Fill.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Line.Default.FillBrush">
            <summary>
            The default custom brush for filling in the area under the curve
            (<see cref="P:ZedGraph.Fill.Brush"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Line.Default.FillType">
            <summary>
            The default fill mode for the curve (<see cref="P:ZedGraph.Fill.Type"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Line.Default.IsSmooth">
            <summary>
            The default value for the <see cref="P:ZedGraph.Line.IsSmooth"/>
            property.
            </summary>
        </member>
        <member name="F:ZedGraph.Line.Default.SmoothTension">
            <summary>
            The default value for the <see cref="P:ZedGraph.Line.SmoothTension"/> property.
            </summary>
        </member>
        <member name="F:ZedGraph.Line.Default.StepType">
            <summary>
            Default value for the curve type property
            (<see cref="P:ZedGraph.Line.StepType"/>).  This determines if the curve
            will be drawn by directly connecting the points from the
            <see cref="P:ZedGraph.CurveItem.Points"/> data collection,
            or if the curve will be a "stair-step" in which the points are
            connected by a series of horizontal and vertical lines that
            represent discrete, staticant values.  Note that the values can
            be forward oriented <code>ForwardStep</code> (<see cref="F:ZedGraph.Line.Default.StepType"/>) or
            rearward oriented <code>RearwardStep</code>.
            That is, the points are defined at the beginning or end
            of the staticant value for which they apply, respectively.
            </summary>
            <value><see cref="F:ZedGraph.Line.Default.StepType"/> enum value</value>
        </member>
        <member name="T:ZedGraph.GraphObjList">
            <summary>
            A collection class containing a list of <see cref="T:ZedGraph.TextObj"/> objects
            to be displayed on the graph.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="M:ZedGraph.GraphObjList.#ctor">
            <summary>
            Default constructor for the <see cref="T:ZedGraph.GraphObjList"/> collection class
            </summary>
        </member>
        <member name="M:ZedGraph.GraphObjList.#ctor(ZedGraph.GraphObjList)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.GraphObjList"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.GraphObjList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.GraphObjList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.GraphObjList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.GraphObjList.IndexOfTag(System.String)">
            <summary>
            Return the zero-based position index of the
            <see cref="T:ZedGraph.GraphObj"/> with the specified <see cref="F:ZedGraph.GraphObj.Tag"/>.
            </summary>
            <remarks>In order for this method to work, the <see cref="F:ZedGraph.GraphObj.Tag"/>
            property must be of type <see cref="T:System.String"/>.</remarks>
            <param name="tag">The <see cref="T:System.String"/> tag that is in the
            <see cref="F:ZedGraph.GraphObj.Tag"/> attribute of the item to be found.
            </param>
            <returns>The zero-based index of the specified <see cref="T:ZedGraph.GraphObj"/>,
            or -1 if the <see cref="T:ZedGraph.GraphObj"/> is not in the list</returns>
        </member>
        <member name="M:ZedGraph.GraphObjList.Move(System.Int32,System.Int32)">
            <summary>
            Move the position of the object at the specified index
            to the new relative position in the list.</summary>
            <remarks>For Graphic type objects, this method controls the
            Z-Order of the items.  Objects at the beginning of the list
            appear in front of objects at the end of the list.</remarks>
            <param name="index">The zero-based index of the object
            to be moved.</param>
            <param name="relativePos">The relative number of positions to move
            the object.  A value of -1 will move the
            object one position earlier in the list, a value
            of 1 will move it one position later.  To move an item to the
            beginning of the list, use a large negative value (such as -999).
            To move it to the end of the list, use a large positive value.
            </param>
            <returns>The new position for the object, or -1 if the object
            was not found.</returns>
        </member>
        <member name="M:ZedGraph.GraphObjList.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single,ZedGraph.ZOrder)">
            <summary>
            Render text to the specified <see cref="T:System.Drawing.Graphics"/> device
            by calling the Draw method of each <see cref="T:ZedGraph.GraphObj"/> object in
            the collection.
            </summary>
            <remarks>This method is normally only called by the Draw method
            of the parent <see cref="T:ZedGraph.GraphPane"/> object.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="zOrder">A <see cref="T:ZedGraph.ZOrder"/> enumeration that controls
            the placement of this <see cref="T:ZedGraph.GraphObj"/> relative to other
            graphic objects.  The order of <see cref="T:ZedGraph.GraphObj"/>'s with the
            same <see cref="T:ZedGraph.ZOrder"/> value is control by their order in
            this <see cref="T:ZedGraph.GraphObjList"/>.</param>
        </member>
        <member name="M:ZedGraph.GraphObjList.FindPoint(System.Drawing.PointF,ZedGraph.PaneBase,System.Drawing.Graphics,System.Single,System.Int32@)">
            <summary>
            Determine if a mouse point is within any <see cref="T:ZedGraph.GraphObj"/>, and if so, 
            return the index number of the the <see cref="T:ZedGraph.GraphObj"/>.
            </summary>
            <param name="mousePt">The screen point, in pixel coordinates.</param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="index">The index number of the <see cref="T:ZedGraph.TextObj"/>
             that is under the mouse point.  The <see cref="T:ZedGraph.TextObj"/> object is
            accessible via the <see cref="T:ZedGraph.GraphObjList"/> indexer property.
            </param>
            <returns>true if the mouse point is within a <see cref="T:ZedGraph.GraphObj"/> bounding
            box, false otherwise.</returns>
            <seealso cref="M:ZedGraph.GraphPane.FindNearestObject(System.Drawing.PointF,System.Drawing.Graphics,System.Object@,System.Int32@)"/>
        </member>
        <member name="P:ZedGraph.GraphObjList.Item(System.String)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.GraphObj"/> object by its <see cref="F:ZedGraph.GraphObj.Tag"/>.
            Note that the <see cref="F:ZedGraph.GraphObj.Tag"/> must be a <see cref="T:System.String"/> type for this method
            to work.
            </summary>
            <param name="tag">The <see cref="T:System.String"/> type tag to search for.</param>
            <value>A <see cref="T:ZedGraph.GraphObj"/> object reference.</value>
            <seealso cref="M:ZedGraph.GraphObjList.IndexOfTag(System.String)"/>
        </member>
        <member name="T:ZedGraph.FontSpec">
            <summary>
            The <see cref="T:ZedGraph.FontSpec"/> class is a generic font class that maintains the font family,
            attributes, colors, border and fill modes, font size, and angle information.
            This class can render text with a variety of alignment options using the
            <see cref="T:ZedGraph.AlignH"/> and <see cref="T:ZedGraph.AlignV"/> parameters in the
            <see cref="M:ZedGraph.FontSpec.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single)"/> method.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.24 $ $Date: 2007/01/25 07:56:08 $ </version>
        </member>
        <member name="F:ZedGraph.FontSpec.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec._fontColor">
            <summary>
            Private field that stores the color of the font characters for this
            <see cref="T:ZedGraph.FontSpec"/>.  Use the public property <see cref="P:ZedGraph.FontSpec.FontColor"/>
            to access this value.
            </summary>
            <value>A system <see cref="T:System.Drawing.Color"/> reference.</value>
        </member>
        <member name="F:ZedGraph.FontSpec._family">
            <summary>
            Private field that stores the font family name for this <see cref="T:ZedGraph.FontSpec"/>.
            Use the public property <see cref="P:ZedGraph.FontSpec.Family"/> to access this value.
            </summary>
            <value>A text string with the font family name, e.g., "Arial"</value>
        </member>
        <member name="F:ZedGraph.FontSpec._isBold">
            <summary>
            Private field that determines whether this <see cref="T:ZedGraph.FontSpec"/> is
            drawn with bold typeface.
            Use the public property <see cref="P:ZedGraph.FontSpec.IsBold"/> to access this value.
            </summary>
            <value>A boolean value, true for bold, false for normal</value>
        </member>
        <member name="F:ZedGraph.FontSpec._isItalic">
            <summary>
            Private field that determines whether this <see cref="T:ZedGraph.FontSpec"/> is
            drawn with italic typeface.
            Use the public property <see cref="P:ZedGraph.FontSpec.IsItalic"/> to access this value.
            </summary>
            <value>A boolean value, true for italic, false for normal</value>
        </member>
        <member name="F:ZedGraph.FontSpec._isUnderline">
            <summary>
            Private field that determines whether this <see cref="T:ZedGraph.FontSpec"/> is
            drawn with underlined typeface.
            Use the public property <see cref="P:ZedGraph.FontSpec.IsUnderline"/> to access this value.
            </summary>
            <value>A boolean value, true for underline, false for normal</value>
        </member>
        <member name="F:ZedGraph.FontSpec._fill">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.FontSpec"/>.  Use the public property <see cref="P:ZedGraph.FontSpec.Fill"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec._border">
            <summary>
            Private field that determines the properties of the border around the text.
            Use the public property <see cref="P:ZedGraph.FontSpec.Border"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec._angle">
            <summary>
            Private field that determines the angle at which this
            <see cref="T:ZedGraph.FontSpec"/> object is drawn.  Use the public property
            <see cref="P:ZedGraph.FontSpec.Angle"/> to access this value.
            </summary>
            <value>The angle of the font, measured in anti-clockwise degrees from
            horizontal.  Negative values are permitted.</value>
        </member>
        <member name="F:ZedGraph.FontSpec._stringAlignment">
            <summary>
            Private field that determines the alignment with which this
            <see cref="T:ZedGraph.FontSpec"/> object is drawn.  This alignment really only
            affects multi-line strings.  Use the public property
            <see cref="P:ZedGraph.FontSpec.StringAlignment"/> to access this value.
            </summary>
            <value>A <see cref="P:ZedGraph.FontSpec.StringAlignment"/> enumeration.</value>
        </member>
        <member name="F:ZedGraph.FontSpec._size">
            <summary>
            Private field that determines the size of the font for this
            <see cref="T:ZedGraph.FontSpec"/> object.  Use the public property
            <see cref="P:ZedGraph.FontSpec.Size"/> to access this value.
            </summary>
            <value>The size of the font, measured in points (1/72 inch).</value>
        </member>
        <member name="F:ZedGraph.FontSpec._font">
            <summary>
            Private field that stores a reference to the <see cref="T:System.Drawing.Font"/>
            object for this <see cref="T:ZedGraph.FontSpec"/>.  This font object will be at
            the actual drawn size <see cref="F:ZedGraph.FontSpec._scaledSize"/> according to the current
            size of the <see cref="T:ZedGraph.GraphPane"/>.  Use the public method
            <see cref="M:ZedGraph.FontSpec.GetFont(System.Single)"/> to access this font object.
            </summary>
            <value>A reference to a <see cref="T:System.Drawing.Font"/> object</value>
        </member>
        <member name="F:ZedGraph.FontSpec._isAntiAlias">
            <summary>
            Private field that determines if the <see cref="T:ZedGraph.FontSpec"/> will be
            displayed using anti-aliasing logic.
            Use the public property <see cref="P:ZedGraph.FontSpec.IsAntiAlias"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec._isDropShadow">
            <summary>
            Private field that determines if the <see cref="T:ZedGraph.FontSpec"/> will be
            displayed with a drop shadow.
            Use the public property <see cref="P:ZedGraph.FontSpec.IsDropShadow"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec._dropShadowColor">
            <summary>
            Private field that determines the color of the dropshadow for this
            <see cref="T:ZedGraph.FontSpec"/>.
            Use the public property <see cref="P:ZedGraph.FontSpec.DropShadowColor"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec._dropShadowAngle">
            <summary>
            Private field that determines the offset angle of the dropshadow for this
            <see cref="T:ZedGraph.FontSpec"/>.
            Use the public property <see cref="P:ZedGraph.FontSpec.DropShadowAngle"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec._dropShadowOffset">
            <summary>
            Private field that determines the offset distance of the dropshadow for this
            <see cref="T:ZedGraph.FontSpec"/>.
            Use the public property <see cref="P:ZedGraph.FontSpec.DropShadowOffset"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec._superScriptFont">
            <summary>
            Private field that stores a reference to the <see cref="T:System.Drawing.Font"/>
            object that will be used for superscripts.  This font object will be a
            fraction of the <see cref="T:ZedGraph.FontSpec"/> <see cref="F:ZedGraph.FontSpec._scaledSize"/>,
            based on the value of <see cref="F:ZedGraph.FontSpec.Default.SuperSize"/>.  This
            property is internal, and has no public access.
            </summary>
            <value>A reference to a <see cref="T:System.Drawing.Font"/> object</value>
        </member>
        <member name="F:ZedGraph.FontSpec._scaledSize">
            <summary>
            Private field that temporarily stores the scaled size of the font for this
            <see cref="T:ZedGraph.FontSpec"/> object.  This represents the actual on-screen
            size, rather than the <see cref="P:ZedGraph.FontSpec.Size"/> that represents the reference
            size for a "full-sized" <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
            <value>The size of the font, measured in points (1/72 inch).</value>
        </member>
        <member name="M:ZedGraph.FontSpec.#ctor">
            <summary>
            Construct a <see cref="T:ZedGraph.FontSpec"/> object with default properties.
            </summary>
        </member>
        <member name="M:ZedGraph.FontSpec.#ctor(System.String,System.Single,System.Drawing.Color,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Construct a <see cref="T:ZedGraph.FontSpec"/> object with the given properties.  All other properties
            are defaulted according to the values specified in the <see cref="T:ZedGraph.FontSpec.Default"/>
            default class.
            </summary>
            <param name="family">A text string representing the font family
            (default is "Arial")</param>
            <param name="size">A size of the font in points.  This size will be scaled
            based on the ratio of the <see cref="P:ZedGraph.PaneBase.Rect"/> dimension to the
            <see cref="P:ZedGraph.PaneBase.BaseDimension"/> of the <see cref="T:ZedGraph.GraphPane"/> object. </param>
            <param name="color">The color with which to render the font</param>
            <param name="isBold">true for a bold typeface, false otherwise</param>
            <param name="isItalic">true for an italic typeface, false otherwise</param>
            <param name="isUnderline">true for an underlined font, false otherwise</param>
        </member>
        <member name="M:ZedGraph.FontSpec.#ctor(System.String,System.Single,System.Drawing.Color,System.Boolean,System.Boolean,System.Boolean,System.Drawing.Color,System.Drawing.Brush,ZedGraph.FillType)">
            <summary>
            Construct a <see cref="T:ZedGraph.FontSpec"/> object with the given properties.  All other properties
            are defaulted according to the values specified in the <see cref="T:ZedGraph.FontSpec.Default"/>
            default class.
            </summary>
            <param name="family">A text string representing the font family
            (default is "Arial")</param>
            <param name="size">A size of the font in points.  This size will be scaled
            based on the ratio of the <see cref="P:ZedGraph.PaneBase.Rect"/> dimension to the
            <see cref="P:ZedGraph.PaneBase.BaseDimension"/> of the <see cref="T:ZedGraph.GraphPane"/> object. </param>
            <param name="color">The color with which to render the font</param>
            <param name="isBold">true for a bold typeface, false otherwise</param>
            <param name="isItalic">true for an italic typeface, false otherwise</param>
            <param name="isUnderline">true for an underlined font, false otherwise</param>
            <param name="fillColor">The <see cref="T:System.Drawing.Color"/> to use for filling in the text background</param>
            <param name="fillBrush">The <see cref="T:System.Drawing.Brush"/> to use for filling in the text background</param>
            <param name="fillType">The <see cref="T:ZedGraph.FillType"/> to use for the
            text background</param>
        </member>
        <member name="M:ZedGraph.FontSpec.#ctor(ZedGraph.FontSpec)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The FontSpec object from which to copy</param>
        </member>
        <member name="M:ZedGraph.FontSpec.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.FontSpec.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.FontSpec.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.FontSpec.Remake(System.Single,System.Single,System.Single@,System.Drawing.Font@)">
            <summary>
            Recreate the font based on a new scaled size.  The font
            will only be recreated if the scaled size has changed by
            at least 0.1 points.
            </summary>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="size">The unscaled size of the font, in points</param>
            <param name="scaledSize">The scaled size of the font, in points</param>
            <param name="font">A reference to the <see cref="T:System.Drawing.Font"/> object</param>
        </member>
        <member name="M:ZedGraph.FontSpec.GetFont(System.Single)">
            <summary>
            Get the <see cref="T:System.Drawing.Font"/> class for the current scaled font.
            </summary>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>Returns a reference to a <see cref="T:System.Drawing.Font"/> object
            with a size of <see cref="F:ZedGraph.FontSpec._scaledSize"/>, and font <see cref="P:ZedGraph.FontSpec.Family"/>.
            </returns>
        </member>
        <member name="M:ZedGraph.FontSpec.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single)">
            <summary>
            Render the specified <paramref name="text"/> to the specifed
            <see cref="T:System.Drawing.Graphics"/> device.  The text, border, and fill options
            will be rendered as required.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="text">A string value containing the text to be
            displayed.  This can be multiple lines, separated by newline ('\n')
            characters</param>
            <param name="x">The X location to display the text, in screen
            coordinates, relative to the horizontal (<see cref="T:ZedGraph.AlignH"/>)
            alignment parameter <paramref name="alignH"/></param>
            <param name="y">The Y location to display the text, in screen
            coordinates, relative to the vertical (<see cref="T:ZedGraph.AlignV"/>
            alignment parameter <paramref name="alignV"/></param>
            <param name="alignH">A horizontal alignment parameter specified
            using the <see cref="T:ZedGraph.AlignH"/> enum type</param>
            <param name="alignV">A vertical alignment parameter specified
            using the <see cref="T:ZedGraph.AlignV"/> enum type</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.FontSpec.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single,System.Drawing.SizeF)">
            <summary>
            Render the specified <paramref name="text"/> to the specifed
            <see cref="T:System.Drawing.Graphics"/> device.  The text, border, and fill options
            will be rendered as required.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="text">A string value containing the text to be
            displayed.  This can be multiple lines, separated by newline ('\n')
            characters</param>
            <param name="x">The X location to display the text, in screen
            coordinates, relative to the horizontal (<see cref="T:ZedGraph.AlignH"/>)
            alignment parameter <paramref name="alignH"/></param>
            <param name="y">The Y location to display the text, in screen
            coordinates, relative to the vertical (<see cref="T:ZedGraph.AlignV"/>
            alignment parameter <paramref name="alignV"/></param>
            <param name="alignH">A horizontal alignment parameter specified
            using the <see cref="T:ZedGraph.AlignH"/> enum type</param>
            <param name="alignV">A vertical alignment parameter specified
            using the <see cref="T:ZedGraph.AlignV"/> enum type</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="layoutArea">The limiting area (<see cref="T:System.Drawing.SizeF"/>) into which the text
            must fit.  The actual rectangle may be smaller than this, but the text will be wrapped
            to accomodate the area.</param>
        </member>
        <member name="M:ZedGraph.FontSpec.DrawTenPower(System.Drawing.Graphics,ZedGraph.GraphPane,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single)">
            <summary>
            Render the specified <paramref name="text"/> to the specifed
            <see cref="T:System.Drawing.Graphics"/> device.  The text, border, and fill options
            will be rendered as required.  This special case method will show the
            specified text as a power of 10, using the <see cref="F:ZedGraph.FontSpec.Default.SuperSize"/>
            and <see cref="F:ZedGraph.FontSpec.Default.SuperShift"/>.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="text">A string value containing the text to be
            displayed.  This can be multiple lines, separated by newline ('\n')
            characters</param>
            <param name="x">The X location to display the text, in screen
            coordinates, relative to the horizontal (<see cref="T:ZedGraph.AlignH"/>)
            alignment parameter <paramref name="alignH"/></param>
            <param name="y">The Y location to display the text, in screen
            coordinates, relative to the vertical (<see cref="T:ZedGraph.AlignV"/>
            alignment parameter <paramref name="alignV"/></param>
            <param name="alignH">A horizontal alignment parameter specified
            using the <see cref="T:ZedGraph.AlignH"/> enum type</param>
            <param name="alignV">A vertical alignment parameter specified
            using the <see cref="T:ZedGraph.AlignV"/> enum type</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.FontSpec.GetHeight(System.Single)">
            <summary>
            Get the height of the scaled font
            </summary>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>The scaled font height, in pixels</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.GetWidth(System.Drawing.Graphics,System.Single)">
            <summary>
            Get the average character width of the scaled font.  The average width is
            based on the character 'x'
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>The scaled font width, in pixels</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.GetWidth(System.Drawing.Graphics,System.String,System.Single)">
            <summary>
            Get the total width of the specified text string
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="text">The text string for which the width is to be calculated
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>The scaled text width, in pixels</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.MeasureString(System.Drawing.Graphics,System.String,System.Single)">
            <summary>
            Get a <see cref="T:System.Drawing.SizeF"/> struct representing the width and height
            of the specified text string, based on the scaled font size
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="text">The text string for which the width is to be calculated
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>The scaled text dimensions, in pixels, in the form of
            a <see cref="T:System.Drawing.SizeF"/> struct</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.MeasureString(System.Drawing.Graphics,System.String,System.Single,System.Drawing.SizeF)">
            <summary>
            Get a <see cref="T:System.Drawing.SizeF"/> struct representing the width and height
            of the specified text string, based on the scaled font size, and using
            the specified <see cref="T:System.Drawing.SizeF"/> as an outer limit.
            </summary>
            <remarks>
            This method will allow the text to wrap as necessary to fit the 
            <see paramref="layoutArea"/>.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="text">The text string for which the width is to be calculated
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="layoutArea">The limiting area (<see cref="T:System.Drawing.SizeF"/>) into which the text
            must fit.  The actual rectangle may be smaller than this, but the text will be wrapped
            to accomodate the area.</param>
            <returns>The scaled text dimensions, in pixels, in the form of
            a <see cref="T:System.Drawing.SizeF"/> struct</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.BoundingBox(System.Drawing.Graphics,System.String,System.Single)">
            <summary>
            Get a <see cref="T:System.Drawing.SizeF"/> struct representing the width and height
            of the bounding box for the specified text string, based on the scaled font size.
            </summary>
            <remarks>
            This routine differs from <see cref="M:ZedGraph.FontSpec.MeasureString(System.Drawing.Graphics,System.String,System.Single)"/> in that it takes into
            account the rotation angle of the font, and gives the dimensions of the
            bounding box that encloses the text at the specified angle.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="text">The text string for which the width is to be calculated
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>The scaled text dimensions, in pixels, in the form of
            a <see cref="T:System.Drawing.SizeF"/> struct</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.BoundingBox(System.Drawing.Graphics,System.String,System.Single,System.Drawing.SizeF)">
            <summary>
            Get a <see cref="T:System.Drawing.SizeF"/> struct representing the width and height
            of the bounding box for the specified text string, based on the scaled font size.
            </summary>
            <remarks>
            This routine differs from <see cref="M:ZedGraph.FontSpec.MeasureString(System.Drawing.Graphics,System.String,System.Single)"/> in that it takes into
            account the rotation angle of the font, and gives the dimensions of the
            bounding box that encloses the text at the specified angle.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="text">The text string for which the width is to be calculated
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="layoutArea">The limiting area (<see cref="T:System.Drawing.SizeF"/>) into which the text
            must fit.  The actual rectangle may be smaller than this, but the text will be wrapped
            to accomodate the area.</param>
            <returns>The scaled text dimensions, in pixels, in the form of
            a <see cref="T:System.Drawing.SizeF"/> struct</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.BoundingBoxTenPower(System.Drawing.Graphics,System.String,System.Single)">
            <summary>
            Get a <see cref="T:System.Drawing.SizeF"/> struct representing the width and height
            of the bounding box for the specified text string, based on the scaled font size.
            </summary>
            <remarks>
            This special case method will show the specified string as a power of 10,
            superscripted and downsized according to the
            <see cref="F:ZedGraph.FontSpec.Default.SuperSize"/> and <see cref="F:ZedGraph.FontSpec.Default.SuperShift"/>.
            This routine differs from <see cref="M:ZedGraph.FontSpec.MeasureString(System.Drawing.Graphics,System.String,System.Single)"/> in that it takes into
            account the rotation angle of the font, and gives the dimensions of the
            bounding box that encloses the text at the specified angle.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="text">The text string for which the width is to be calculated
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>The scaled text dimensions, in pixels, in the form of
            a <see cref="T:System.Drawing.SizeF"/> struct</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.PointInBox(System.Drawing.PointF,System.Drawing.Graphics,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single)">
            <summary>
            Determines if the specified screen point lies within the bounding box of
            the text, taking into account alignment and rotation parameters.
            </summary>
            <param name="pt">The screen point, in pixel units</param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="text">A string value containing the text to be
            displayed.  This can be multiple lines, separated by newline ('\n')
            characters</param>
            <param name="x">The X location to display the text, in screen
            coordinates, relative to the horizontal (<see cref="T:ZedGraph.AlignH"/>)
            alignment parameter <paramref name="alignH"/></param>
            <param name="y">The Y location to display the text, in screen
            coordinates, relative to the vertical (<see cref="T:ZedGraph.AlignV"/>
            alignment parameter <paramref name="alignV"/></param>
            <param name="alignH">A horizontal alignment parameter specified
            using the <see cref="T:ZedGraph.AlignH"/> enum type</param>
            <param name="alignV">A vertical alignment parameter specified
            using the <see cref="T:ZedGraph.AlignV"/> enum type</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>true if the point lies within the bounding box, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.PointInBox(System.Drawing.PointF,System.Drawing.Graphics,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single,System.Drawing.SizeF)">
            <summary>
            Determines if the specified screen point lies within the bounding box of
            the text, taking into account alignment and rotation parameters.
            </summary>
            <param name="pt">The screen point, in pixel units</param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="text">A string value containing the text to be
            displayed.  This can be multiple lines, separated by newline ('\n')
            characters</param>
            <param name="x">The X location to display the text, in screen
            coordinates, relative to the horizontal (<see cref="T:ZedGraph.AlignH"/>)
            alignment parameter <paramref name="alignH"/></param>
            <param name="y">The Y location to display the text, in screen
            coordinates, relative to the vertical (<see cref="T:ZedGraph.AlignV"/>
            alignment parameter <paramref name="alignV"/></param>
            <param name="alignH">A horizontal alignment parameter specified
            using the <see cref="T:ZedGraph.AlignH"/> enum type</param>
            <param name="alignV">A vertical alignment parameter specified
            using the <see cref="T:ZedGraph.AlignV"/> enum type</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="layoutArea">The limiting area (<see cref="T:System.Drawing.SizeF"/>) into which the text
            must fit.  The actual rectangle may be smaller than this, but the text will be wrapped
            to accomodate the area.</param>
            <returns>true if the point lies within the bounding box, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.FontSpec.GetBox(System.Drawing.Graphics,System.String,System.Single,System.Single,ZedGraph.AlignH,ZedGraph.AlignV,System.Single,System.Drawing.SizeF)">
            <summary>
            Returns a polygon that defines the bounding box of
            the text, taking into account alignment and rotation parameters.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="text">A string value containing the text to be
            displayed.  This can be multiple lines, separated by newline ('\n')
            characters</param>
            <param name="x">The X location to display the text, in screen
            coordinates, relative to the horizontal (<see cref="T:ZedGraph.AlignH"/>)
            alignment parameter <paramref name="alignH"/></param>
            <param name="y">The Y location to display the text, in screen
            coordinates, relative to the vertical (<see cref="T:ZedGraph.AlignV"/>
            alignment parameter <paramref name="alignV"/></param>
            <param name="alignH">A horizontal alignment parameter specified
            using the <see cref="T:ZedGraph.AlignH"/> enum type</param>
            <param name="alignV">A vertical alignment parameter specified
            using the <see cref="T:ZedGraph.AlignV"/> enum type</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="layoutArea">The limiting area (<see cref="T:System.Drawing.SizeF"/>) into which the text
            must fit.  The actual rectangle may be smaller than this, but the text will be wrapped
            to accomodate the area.</param>
            <returns>A polygon of 4 points defining the area of this text</returns>
        </member>
        <member name="P:ZedGraph.FontSpec.FontColor">
            <summary>
            The color of the font characters for this <see cref="T:ZedGraph.FontSpec"/>.
            Note that the border and background
            colors are set using the <see cref="P:ZedGraph.LineBase.Color"/> and
            <see cref="P:ZedGraph.Fill.Color"/> properties, respectively.
            </summary>
            <value>A system <see cref="T:System.Drawing.Color"/> reference.</value>
        </member>
        <member name="P:ZedGraph.FontSpec.Family">
            <summary>
            The font family name for this <see cref="T:ZedGraph.FontSpec"/>.
            </summary>
            <value>A text string with the font family name, e.g., "Arial"</value>
        </member>
        <member name="P:ZedGraph.FontSpec.IsBold">
            <summary>
            Determines whether this <see cref="T:ZedGraph.FontSpec"/> is
            drawn with bold typeface.
            </summary>
            <value>A boolean value, true for bold, false for normal</value>
        </member>
        <member name="P:ZedGraph.FontSpec.IsItalic">
            <summary>
            Determines whether this <see cref="T:ZedGraph.FontSpec"/> is
            drawn with italic typeface.
            </summary>
            <value>A boolean value, true for italic, false for normal</value>
        </member>
        <member name="P:ZedGraph.FontSpec.IsUnderline">
            <summary>
            Determines whether this <see cref="T:ZedGraph.FontSpec"/> is
            drawn with underlined typeface.
            </summary>
            <value>A boolean value, true for underline, false for normal</value>
        </member>
        <member name="P:ZedGraph.FontSpec.Angle">
            <summary>
            The angle at which this <see cref="T:ZedGraph.FontSpec"/> object is drawn.
            </summary>
            <value>The angle of the font, measured in anti-clockwise degrees from
            horizontal.  Negative values are permitted.</value>
        </member>
        <member name="P:ZedGraph.FontSpec.StringAlignment">
            <summary>
            Determines the alignment with which this
            <see cref="T:ZedGraph.FontSpec"/> object is drawn.  This alignment really only
            affects multi-line strings.
            </summary>
            <value>A <see cref="P:ZedGraph.FontSpec.StringAlignment"/> enumeration.</value>
        </member>
        <member name="P:ZedGraph.FontSpec.Size">
            <summary>
            The size of the font for this <see cref="T:ZedGraph.FontSpec"/> object.
            </summary>
            <value>The size of the font, measured in points (1/72 inch).</value>
        </member>
        <member name="P:ZedGraph.FontSpec.Border">
            <summary>
            Gets or sets the <see cref="P:ZedGraph.FontSpec.Border"/> class used to draw the border border
            around this text.
            </summary>
        </member>
        <member name="P:ZedGraph.FontSpec.Fill">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.FontSpec"/>, which controls how the background
            behind the text is filled.
            </summary>
        </member>
        <member name="P:ZedGraph.FontSpec.IsAntiAlias">
            <summary>
            Gets or sets a value that determines if the <see cref="T:ZedGraph.FontSpec"/> will be
            drawn using anti-aliasing logic within GDI+.
            </summary>
            <remarks>
            If this property is set to true, it will override the current setting of
            <see cref="P:System.Drawing.Graphics.SmoothingMode"/> by setting the value temporarily to
            <see cref="F:System.Drawing.Drawing2D.SmoothingMode.HighQuality"/>.  If this property is set to false,
            the the current setting of <see cref="P:System.Drawing.Graphics.SmoothingMode"/> will be
            left as-is.
            </remarks>
        </member>
        <member name="P:ZedGraph.FontSpec.IsDropShadow">
            <summary>
            Gets or sets a value that determines if the <see cref="T:ZedGraph.FontSpec"/> will be
            displayed with a drop shadow.
            </summary>
            <seealso cref="P:ZedGraph.FontSpec.DropShadowColor"/>
            <seealso cref="P:ZedGraph.FontSpec.DropShadowAngle"/>
            <seealso cref="P:ZedGraph.FontSpec.DropShadowOffset"/>
        </member>
        <member name="P:ZedGraph.FontSpec.DropShadowColor">
            <summary>
            Gets or sets the color of the drop shadow for this <see cref="T:ZedGraph.FontSpec"/>.
            </summary>
            <remarks>
            This value only applies if <see cref="P:ZedGraph.FontSpec.IsDropShadow"/> is true.
            </remarks>
            <seealso cref="P:ZedGraph.FontSpec.IsDropShadow"/>
            <seealso cref="P:ZedGraph.FontSpec.DropShadowAngle"/>
            <seealso cref="P:ZedGraph.FontSpec.DropShadowOffset"/>
        </member>
        <member name="P:ZedGraph.FontSpec.DropShadowAngle">
            <summary>
            Gets or sets the offset angle of the drop shadow for this <see cref="T:ZedGraph.FontSpec"/>.
            </summary>
            <remarks>
            This value only applies if <see cref="P:ZedGraph.FontSpec.IsDropShadow"/> is true.
            </remarks>
            <value>The angle, measured in anti-clockwise degrees from
            horizontal.  Negative values are permitted.</value>
            <seealso cref="P:ZedGraph.FontSpec.IsDropShadow"/>
            <seealso cref="P:ZedGraph.FontSpec.DropShadowColor"/>
            <seealso cref="P:ZedGraph.FontSpec.DropShadowOffset"/>
        </member>
        <member name="P:ZedGraph.FontSpec.DropShadowOffset">
            <summary>
            Gets or sets the offset distance of the drop shadow for this <see cref="T:ZedGraph.FontSpec"/>.
            </summary>
            <remarks>
            This value only applies if <see cref="P:ZedGraph.FontSpec.IsDropShadow"/> is true.
            </remarks>
            <value>The offset distance, measured as a fraction of the scaled font height.</value>
            <seealso cref="P:ZedGraph.FontSpec.IsDropShadow"/>
            <seealso cref="P:ZedGraph.FontSpec.DropShadowColor"/>
            <seealso cref="P:ZedGraph.FontSpec.DropShadowAngle"/>
        </member>
        <member name="T:ZedGraph.FontSpec.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.FontSpec"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec.Default.SuperSize">
            <summary>
            The default size fraction of the superscript font, expressed as a fraction
            of the size of the main font.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec.Default.SuperShift">
            <summary>
            The default shift fraction of the superscript, expressed as a
            fraction of the superscripted character height.  This is the height
            above the main font (a zero shift means the main font and the superscript
            font have the tops aligned).
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec.Default.FillColor">
            <summary>
            The default color for filling in the background of the text block
            (<see cref="P:ZedGraph.Fill.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec.Default.FillBrush">
            <summary>
            The default custom brush for filling in this <see cref="T:ZedGraph.FontSpec"/>
            (<see cref="P:ZedGraph.Fill.Brush"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec.Default.FillType">
            <summary>
            The default fill mode for this <see cref="T:ZedGraph.FontSpec"/>
            (<see cref="P:ZedGraph.Fill.Type"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec.Default.StringAlignment">
            <summary>
            Default value for the alignment with which this
            <see cref="T:ZedGraph.FontSpec"/> object is drawn.  This alignment really only
            affects multi-line strings.
            </summary>
            <value>A <see cref="F:ZedGraph.FontSpec.Default.StringAlignment"/> enumeration.</value>
        </member>
        <member name="F:ZedGraph.FontSpec.Default.IsDropShadow">
            <summary>
            Default value for <see cref="P:ZedGraph.FontSpec.IsDropShadow"/>, which determines
            if the drop shadow is displayed for this <see cref="T:ZedGraph.FontSpec"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec.Default.IsAntiAlias">
            <summary>
            Default value for <see cref="P:ZedGraph.FontSpec.IsAntiAlias"/>, which determines
            if anti-aliasing logic is used for this <see cref="T:ZedGraph.FontSpec"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec.Default.DropShadowColor">
            <summary>
            Default value for <see cref="P:ZedGraph.FontSpec.DropShadowColor"/>, which determines
            the color of the drop shadow for this <see cref="T:ZedGraph.FontSpec"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec.Default.DropShadowAngle">
            <summary>
            Default value for <see cref="P:ZedGraph.FontSpec.DropShadowAngle"/>, which determines
            the offset angle of the drop shadow for this <see cref="T:ZedGraph.FontSpec"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.FontSpec.Default.DropShadowOffset">
            <summary>
            Default value for <see cref="P:ZedGraph.FontSpec.DropShadowOffset"/>, which determines
            the offset distance of the drop shadow for this <see cref="T:ZedGraph.FontSpec"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.Border">
            <summary>
            A class that encapsulates Border (frame) properties for an object.  The <see cref="T:ZedGraph.Border"/> class
            is used in a variety of ZedGraph objects to handle the drawing of the Border around the object.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.18 $ $Date: 2007/03/17 18:43:44 $ </version>
        </member>
        <member name="F:ZedGraph.Border.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Border._inflateFactor">
            <summary>
            Private field that stores the amount of inflation to be done on the rectangle
            before rendering.  This allows the border to be inset or outset relative to
            the actual rectangle area.  Use the public property <see cref="P:ZedGraph.Border.InflateFactor"/>
            to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.Border.#ctor">
            <summary>
            The default constructor.  Initialized to default values.
            </summary>
        </member>
        <member name="M:ZedGraph.Border.#ctor(System.Boolean,System.Drawing.Color,System.Single)">
            <summary>
            Constructor that specifies the visibility, color and penWidth of the Border.
            </summary>
            <param name="isVisible">Determines whether or not the Border will be drawn.</param>
            <param name="color">The color of the Border</param>
            <param name="width">The width, in points (1/72 inch), for the Border.</param>
        </member>
        <member name="M:ZedGraph.Border.#ctor(System.Drawing.Color,System.Single)">
            <summary>
            Constructor that specifies the color and penWidth of the Border.
            </summary>
            <param name="color">The color of the Border</param>
            <param name="width">The width, in points (1/72 inch), for the Border.</param>
        </member>
        <member name="M:ZedGraph.Border.#ctor(ZedGraph.Border)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The Border object from which to copy</param>
        </member>
        <member name="M:ZedGraph.Border.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Border.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Border.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Border.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Border.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.Border.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single,System.Drawing.RectangleF)">
            <summary>
            Draw the specified Border (<see cref="T:System.Drawing.RectangleF"/>) using the properties of
            this <see cref="T:ZedGraph.Border"/> object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.
            </param>
            <param name="rect">A <see cref="T:System.Drawing.RectangleF"/> struct to be drawn.</param>
        </member>
        <member name="P:ZedGraph.Border.InflateFactor">
            <summary>
            Gets or sets the amount of inflation to be done on the rectangle
            before rendering.
            </summary>
            <remarks>This allows the border to be inset or outset relative to
            the actual rectangle area.
            </remarks>
        </member>
        <member name="T:ZedGraph.Border.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.Fill"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.Border.Default.InflateFactor">
            <summary>
            The default value for <see cref="P:ZedGraph.Border.InflateFactor"/>, in units of points (1/72 inch).
            </summary>
            <seealso cref="P:ZedGraph.Border.InflateFactor"/>
        </member>
        <member name="T:ZedGraph.BarSettings">
            <summary>
            Class that handles the global settings for bar charts
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.2 $ $Date: 2006/07/02 06:42:01 $ </version>
        </member>
        <member name="F:ZedGraph.BarSettings.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.BarSettings._minClusterGap">
            <summary>Private field that determines the size of the gap between bar clusters
            for bar charts.  This gap is expressed as a fraction of the bar size (1.0 means
            leave a 1-barwidth gap between clusters).
            Use the public property <see cref="P:ZedGraph.BarSettings.MinClusterGap"/> to access this value. </summary>
        </member>
        <member name="F:ZedGraph.BarSettings._minBarGap">
            <summary>Private field that determines the size of the gap between individual bars
            within a bar cluster for bar charts.  This gap is expressed as a fraction of the
            bar size (1.0 means leave a 1-barwidth gap between each bar).
            Use the public property <see cref="P:ZedGraph.BarSettings.MinBarGap"/> to access this value. </summary>
        </member>
        <member name="F:ZedGraph.BarSettings._base">
            <summary>Private field that determines the base axis from which <see cref="T:ZedGraph.Bar"/>
            graphs will be displayed.  The base axis is the axis from which the bars grow with
            increasing value. The value is of the enumeration type <see cref="T:ZedGraph.BarBase"/>.
            To access this value, use the public property <see cref="P:ZedGraph.BarSettings.Base"/>.
            </summary>
            <seealso cref="F:ZedGraph.BarSettings.Default.Base"/>
        </member>
        <member name="F:ZedGraph.BarSettings._type">
            <summary>Private field that determines how the <see cref="T:ZedGraph.BarItem"/>
            graphs will be displayed. See the <see cref="T:ZedGraph.BarType"/> enum
            for the individual types available.
            To access this value, use the public property <see cref="P:ZedGraph.BarSettings.Type"/>.
            </summary>
            <seealso cref="F:ZedGraph.BarSettings.Default.Type"/>
        </member>
        <member name="F:ZedGraph.BarSettings._clusterScaleWidth">
            <summary>Private field that determines the width of a bar cluster (for bar charts)
            in user scale units.  Normally, this value is 1.0 because bar charts are typically
            <see cref="F:ZedGraph.AxisType.Ordinal"/> or <see cref="F:ZedGraph.AxisType.Text"/>, and the bars are
            defined at ordinal values (1.0 scale units apart).  For <see cref="F:ZedGraph.AxisType.Linear"/>
            or other scale types, you can use this value to scale the bars to an arbitrary
            user scale. Use the public property <see cref="P:ZedGraph.BarSettings.ClusterScaleWidth"/> to access this
            value. </summary>
        </member>
        <member name="F:ZedGraph.BarSettings._clusterScaleWidthAuto">
            <summary>
            Private field that determines if the <see cref="P:ZedGraph.BarSettings.ClusterScaleWidth"/> will be
            calculated automatically.  Use the public property <see cref="P:ZedGraph.BarSettings.ClusterScaleWidthAuto"/>
            to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.BarSettings._ownerPane">
            <summary>
            private field that stores the owner GraphPane that contains this BarSettings instance.
            </summary>
        </member>
        <member name="M:ZedGraph.BarSettings.#ctor(ZedGraph.GraphPane)">
            <summary>
            Constructor to build a <see cref="T:ZedGraph.BarSettings"/> instance from the defaults.
            </summary>
        </member>
        <member name="M:ZedGraph.BarSettings.#ctor(ZedGraph.BarSettings,ZedGraph.GraphPane)">
            <summary>
            Copy constructor
            </summary>
            <param name="rhs">the <see cref="T:ZedGraph.BarSettings"/> instance to be copied.</param>
            <param name="parentPane">The <see cref="T:ZedGraph.GraphPane"/> that will be the
            parent of this new BarSettings object.</param>
        </member>
        <member name="M:ZedGraph.BarSettings.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <remarks>
            You MUST set the _ownerPane property after deserializing a BarSettings object.
            </remarks>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the
            serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains
            the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.BarSettings.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.BarSettings.CalcClusterScaleWidth">
            <summary>
            Calculate the width of an individual bar cluster on a <see cref="T:ZedGraph.BarItem"/> graph.
            This value only applies to bar graphs plotted on non-ordinal X axis
            types (<see cref="P:ZedGraph.Scale.IsAnyOrdinal"/> is false).
            </summary>
            <remarks>
            This value can be calculated automatically if <see cref="P:ZedGraph.BarSettings.ClusterScaleWidthAuto"/>
            is set to true.  In this case, ClusterScaleWidth will be calculated if
            <see cref="P:ZedGraph.BarSettings.Base"/> refers to an <see cref="T:ZedGraph.Axis"/> of a non-ordinal type
            (<see cref="P:ZedGraph.Scale.IsAnyOrdinal"/> is false).  The ClusterScaleWidth is calculated
            from the minimum difference found between any two points on the <see cref="P:ZedGraph.BarSettings.Base"/>
            <see cref="T:ZedGraph.Axis"/> for any <see cref="T:ZedGraph.BarItem"/> in the
            <see cref="P:ZedGraph.GraphPane.CurveList"/>.  The ClusterScaleWidth is set automatically
            each time <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/> is called.
            </remarks>
            <seealso cref="F:ZedGraph.BarSettings.Default.ClusterScaleWidth"/>
            <seealso cref="P:ZedGraph.BarSettings.ClusterScaleWidthAuto"/>
            <seealso cref="P:ZedGraph.BarSettings.MinBarGap"/>
            <seealso cref="P:ZedGraph.BarSettings.MinClusterGap"/>
        </member>
        <member name="M:ZedGraph.BarSettings.GetMinStepSize(ZedGraph.IPointList,ZedGraph.Axis)">
            <summary>
            Determine the minimum increment between individual points to be used for
            calculating a bar size that fits without overlapping
            </summary>
            <param name="list">The <see cref="T:ZedGraph.IPointList"/> list of points for the bar
            of interest</param>
            <param name="baseAxis">The base axis for the bar</param>
            <returns>The minimum increment between bars along the base axis</returns>
        </member>
        <member name="M:ZedGraph.BarSettings.GetClusterWidth">
            <summary>
            Determine the width, in screen pixel units, of each bar cluster including
            the cluster gaps and bar gaps.
            </summary>
            <remarks>This method calls the <see cref="M:ZedGraph.Scale.GetClusterWidth(ZedGraph.GraphPane)"/>
            method for the base <see cref="T:ZedGraph.Axis"/> for <see cref="T:ZedGraph.Bar"/> graphs
            (the base <see cref="T:ZedGraph.Axis"/> is assigned by the <see cref="P:ZedGraph.BarSettings.Base"/>
            property).
            </remarks>
            <seealso cref="T:ZedGraph.BarBase"/>
            <seealso cref="T:ZedGraph.BarSettings"/>
            <seealso cref="M:ZedGraph.Scale.GetClusterWidth(ZedGraph.GraphPane)"/>
            <seealso cref="P:ZedGraph.BarSettings.Type"/>
            <returns>The width of each bar cluster, in pixel units</returns>
        </member>
        <member name="M:ZedGraph.BarSettings.BarBaseAxis">
            <summary>
            Determine the <see cref="T:ZedGraph.Axis"/> from which the <see cref="T:ZedGraph.Bar"/> charts are based.
            </summary>
            <seealso cref="T:ZedGraph.BarBase"/>
            <seealso cref="T:ZedGraph.BarSettings"/>
            <seealso cref="P:ZedGraph.BarSettings.Base"/>
            <seealso cref="M:ZedGraph.Scale.GetClusterWidth(ZedGraph.GraphPane)"/>
            <returns>The <see cref="T:ZedGraph.Axis"/> class for the axis from which the bars are based</returns>
        </member>
        <member name="P:ZedGraph.BarSettings.MinClusterGap">
            <summary>
            The minimum space between <see cref="T:ZedGraph.Bar"/> clusters, expressed as a
            fraction of the bar size.
            </summary>
            <seealso cref="F:ZedGraph.BarSettings.Default.MinClusterGap"/>
            <seealso cref="P:ZedGraph.BarSettings.MinBarGap"/>
            <seealso cref="P:ZedGraph.BarSettings.ClusterScaleWidth"/>
        </member>
        <member name="P:ZedGraph.BarSettings.MinBarGap">
            <summary>
            The minimum space between individual <see cref="T:ZedGraph.Bar">Bars</see>
            within a cluster, expressed as a
            fraction of the bar size.
            </summary>
            <seealso cref="F:ZedGraph.BarSettings.Default.MinBarGap"/>
            <seealso cref="P:ZedGraph.BarSettings.MinClusterGap"/>
            <seealso cref="P:ZedGraph.BarSettings.ClusterScaleWidth"/>
        </member>
        <member name="P:ZedGraph.BarSettings.Base">
            <summary>Determines the base axis from which <see cref="T:ZedGraph.Bar"/>
            graphs will be displayed.
            </summary>
            <remarks>The base axis is the axis from which the bars grow with
            increasing value. The value is of the enumeration type <see cref="T:ZedGraph.BarBase"/>.
            </remarks>
            <seealso cref="F:ZedGraph.BarSettings.Default.Base"/>
        </member>
        <member name="P:ZedGraph.BarSettings.Type">
            <summary>Determines how the <see cref="T:ZedGraph.BarItem"/>
            graphs will be displayed. See the <see cref="T:ZedGraph.BarType"/> enum
            for the individual types available.
            </summary>
            <seealso cref="F:ZedGraph.BarSettings.Default.Type"/>
        </member>
        <member name="P:ZedGraph.BarSettings.ClusterScaleWidth">
            <summary>
            The width of an individual bar cluster on a <see cref="T:ZedGraph.Bar"/> graph.
            This value only applies to bar graphs plotted on non-ordinal X axis
            types (<see cref="F:ZedGraph.AxisType.Linear"/>, <see cref="F:ZedGraph.AxisType.Log"/>, and
            <see cref="F:ZedGraph.AxisType.Date"/>.
            </summary>
            <remarks>
            This value can be calculated automatically if <see cref="P:ZedGraph.BarSettings.ClusterScaleWidthAuto"/>
            is set to true.  In this case, ClusterScaleWidth will be calculated if
            <see cref="P:ZedGraph.BarSettings.Base"/> refers to an <see cref="T:ZedGraph.Axis"/> of a non-ordinal type
            (<see cref="P:ZedGraph.Scale.IsAnyOrdinal"/> is false).  The ClusterScaleWidth is calculated
            from the minimum difference found between any two points on the <see cref="P:ZedGraph.BarSettings.Base"/>
            <see cref="T:ZedGraph.Axis"/> for any <see cref="T:ZedGraph.BarItem"/> in the
            <see cref="P:ZedGraph.GraphPane.CurveList"/>.  The ClusterScaleWidth is set automatically
            each time <see cref="M:ZedGraph.GraphPane.AxisChange(System.Drawing.Graphics)"/> is called.  Calculations are
            done by the <see cref="M:ZedGraph.BarSettings.CalcClusterScaleWidth"/> method.
            </remarks>
            <seealso cref="F:ZedGraph.BarSettings.Default.ClusterScaleWidth"/>
            <seealso cref="P:ZedGraph.BarSettings.ClusterScaleWidthAuto"/>
            <seealso cref="P:ZedGraph.BarSettings.MinBarGap"/>
            <seealso cref="P:ZedGraph.BarSettings.MinClusterGap"/>
        </member>
        <member name="P:ZedGraph.BarSettings.ClusterScaleWidthAuto">
            <summary>
            Gets or sets a property that determines if the <see cref="P:ZedGraph.BarSettings.ClusterScaleWidth"/> will be
            calculated automatically.
            </summary>
            <remarks>true for the <see cref="P:ZedGraph.BarSettings.ClusterScaleWidth"/> to be calculated
            automatically based on the available data, false otherwise.  This value will
            be set to false automatically if the <see cref="P:ZedGraph.BarSettings.ClusterScaleWidth"/> value
            is changed by the user.
            </remarks>
            <seealso cref="F:ZedGraph.BarSettings.Default.ClusterScaleWidthAuto"/>
            <seealso cref="P:ZedGraph.BarSettings.ClusterScaleWidth"/>
        </member>
        <member name="T:ZedGraph.BarSettings.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.BarSettings"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.BarSettings.Default.MinClusterGap">
            <summary>
            The default dimension gap between clusters of bars on a
            <see cref="T:ZedGraph.Bar"/> graph.
            This dimension is expressed in terms of the normal bar width.
            </summary>
            <seealso cref="F:ZedGraph.BarSettings.Default.MinBarGap"/>
            <seealso cref="P:ZedGraph.BarSettings.MinClusterGap"/>
        </member>
        <member name="F:ZedGraph.BarSettings.Default.MinBarGap">
            <summary>
            The default dimension gap between each individual bar within a bar cluster
            on a <see cref="T:ZedGraph.Bar"/> graph.
            This dimension is expressed in terms of the normal bar width.
            </summary>
            <seealso cref="F:ZedGraph.BarSettings.Default.MinClusterGap"/>
            <seealso cref="P:ZedGraph.BarSettings.MinBarGap"/>
        </member>
        <member name="F:ZedGraph.BarSettings.Default.Base">
            <summary>The default value for the <see cref="P:ZedGraph.BarSettings.Base"/>, which determines the base
            <see cref="T:ZedGraph.Axis"/> from which the <see cref="T:ZedGraph.Bar"/> graphs will be displayed.
            </summary>
            <seealso cref="P:ZedGraph.BarSettings.Base"/>
        </member>
        <member name="F:ZedGraph.BarSettings.Default.Type">
            <summary>The default value for the <see cref="P:ZedGraph.BarSettings.Type"/> property, which
            determines if the bars are drawn overlapping eachother in a "stacked" format,
            or side-by-side in a "cluster" format.  See the <see cref="T:ZedGraph.BarType"/>
            for more information.
            </summary>
            <seealso cref="P:ZedGraph.BarSettings.Type"/>
        </member>
        <member name="F:ZedGraph.BarSettings.Default.ClusterScaleWidth">
            <summary>
            The default width of a bar cluster 
            on a <see cref="T:ZedGraph.Bar"/> graph.  This value only applies to
            <see cref="T:ZedGraph.Bar"/> graphs, and only when the
            <see cref="P:ZedGraph.Axis.Type"/> is <see cref="F:ZedGraph.AxisType.Linear"/>,
            <see cref="F:ZedGraph.AxisType.Log"/> or <see cref="F:ZedGraph.AxisType.Date"/>.
            This dimension is expressed in terms of X scale user units.
            </summary>
            <seealso cref="F:ZedGraph.BarSettings.Default.MinClusterGap"/>
            <seealso cref="P:ZedGraph.BarSettings.MinBarGap"/>
        </member>
        <member name="F:ZedGraph.BarSettings.Default.ClusterScaleWidthAuto">
            <summary>
            The default value for <see cref="P:ZedGraph.BarSettings.ClusterScaleWidthAuto"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.ValueHandler">
            <summary>
            A class designed to simplify the process of getting the actual value for
            the various stacked and regular curve types
            </summary>
            
            <author> John Champion</author>
            <version> $Revision: 3.18 $ $Date: 2007/02/18 05:51:54 $ </version>
        </member>
        <member name="M:ZedGraph.ValueHandler.#ctor(ZedGraph.GraphPane,System.Boolean)">
            <summary>
            Basic constructor that saves a reference to the parent
            <see cref="T:ZedGraph.GraphPane"/> object.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> object.</param>
            <param name="initialize">A <see cref="T:System.Boolean"/> flag to indicate whether or
            not the drawing variables should be initialized.  Initialization is not
            required if this is part of a ZedGraph internal draw operation (i.e., its in
            the middle of a call to <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/>).  Otherwise, you should
            initialize to make sure the drawing variables are configured.  true to do
            an initialization, false otherwise.</param>
        </member>
        <member name="M:ZedGraph.ValueHandler.GetValues(ZedGraph.CurveItem,System.Int32,System.Double@,System.Double@,System.Double@)">
            <summary>
            Get the user scale values associate with a particular point of a
            particular curve.</summary>
            <remarks>The main purpose of this method is to handle
            stacked bars, in which case the stacked values are returned rather
            than the individual data values.
            </remarks>
            <param name="curve">A <see cref="T:ZedGraph.CurveItem"/> object of interest.</param>
            <param name="iPt">The zero-based point index for the point of interest.</param>
            <param name="baseVal">A <see cref="T:System.Double"/> value representing the value
            for the independent axis.</param>
            <param name="lowVal">A <see cref="T:System.Double"/> value representing the lower
            value for the dependent axis.</param>
            <param name="hiVal">A <see cref="T:System.Double"/> value representing the upper
            value for the dependent axis.</param>
            <returns>true if the data point is value, false for
            <see cref="F:ZedGraph.PointPairBase.Missing"/>, invalid, etc. data.</returns>
        </member>
        <member name="M:ZedGraph.ValueHandler.GetValues(ZedGraph.GraphPane,ZedGraph.CurveItem,System.Int32,System.Double@,System.Double@,System.Double@)">
            <summary>
            Get the user scale values associate with a particular point of a
            particular curve.</summary>
            <remarks>The main purpose of this method is to handle
            stacked bars and lines, in which case the stacked values are returned rather
            than the individual data values.  However, this method works generically for any
            curve type.
            </remarks>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> object.</param>
            <param name="curve">A <see cref="T:ZedGraph.CurveItem"/> object of interest.</param>
            <param name="iPt">The zero-based point index for the point of interest.</param>
            <param name="baseVal">A <see cref="T:System.Double"/> value representing the value
            for the independent axis.</param>
            <param name="lowVal">A <see cref="T:System.Double"/> value representing the lower
            value for the dependent axis.</param>
            <param name="hiVal">A <see cref="T:System.Double"/> value representing the upper
            value for the dependent axis.</param>
            <returns>true if the data point is value, false for
            <see cref="F:ZedGraph.PointPairBase.Missing"/>, invalid, etc. data.</returns>
        </member>
        <member name="M:ZedGraph.ValueHandler.BarCenterValue(ZedGraph.CurveItem,System.Single,System.Int32,System.Double,System.Int32)">
            <summary>
            Calculate the user scale position of the center of the specified bar, using the
            <see cref="T:ZedGraph.Axis"/> as specified by <see cref="P:ZedGraph.BarSettings.Base"/>.  This method is
            used primarily by the
            <see cref="M:ZedGraph.GraphPane.FindNearestPoint(System.Drawing.PointF,ZedGraph.CurveItem@,System.Int32@)"/> method in order to
            determine the bar "location," which is defined as the center of the top of the individual bar.
            </summary>
            <param name="curve">The <see cref="T:ZedGraph.CurveItem"/> representing the
            bar of interest.</param>
            <param name="barWidth">The width of each individual bar. This can be calculated using
            the <see cref="M:ZedGraph.CurveItem.GetBarWidth(ZedGraph.GraphPane)"/> method.</param>
            <param name="iCluster">The cluster number for the bar of interest.  This is the ordinal
            position of the current point.  That is, if a particular <see cref="T:ZedGraph.CurveItem"/> has
            10 points, then a value of 3 would indicate the 4th point in the data array.</param>
            <param name="val">The actual independent axis value for the bar of interest.</param>
            <param name="iOrdinal">The ordinal position of the <see cref="T:ZedGraph.CurveItem"/> of interest.
            That is, the first bar series is 0, the second is 1, etc.  Note that this applies only
            to the bars.  If a graph includes both bars and lines, then count only the bars.</param>
            <returns>A user scale value position of the center of the bar of interest.</returns>
        </member>
        <member name="T:ZedGraph.ScaleStateList">
            <summary>
            A collection class that maintains a list of <see cref="T:ZedGraph.ScaleState"/>
            objects, corresponding to the list of <see cref="T:ZedGraph.Axis"/> objects
            from <see cref="P:ZedGraph.GraphPane.YAxisList"/> or <see cref="P:ZedGraph.GraphPane.Y2AxisList"/>.
            </summary>
        </member>
        <member name="M:ZedGraph.ScaleStateList.#ctor(ZedGraph.YAxisList)">
            <summary>
            Construct a new <see cref="T:ZedGraph.ScaleStateList"/> automatically from an
            existing <see cref="T:ZedGraph.YAxisList"/>.
            </summary>
            <param name="list">The <see cref="T:ZedGraph.YAxisList"/> (a list of Y axes),
            from which to retrieve the state and create the <see cref="T:ZedGraph.ScaleState"/>
            objects.</param>
        </member>
        <member name="M:ZedGraph.ScaleStateList.#ctor(ZedGraph.Y2AxisList)">
            <summary>
            Construct a new <see cref="T:ZedGraph.ScaleStateList"/> automatically from an
            existing <see cref="T:ZedGraph.Y2AxisList"/>.
            </summary>
            <param name="list">The <see cref="T:ZedGraph.Y2AxisList"/> (a list of Y axes),
            from which to retrieve the state and create the <see cref="T:ZedGraph.ScaleState"/>
            objects.</param>
        </member>
        <member name="M:ZedGraph.ScaleStateList.#ctor(ZedGraph.ScaleStateList)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.ScaleStateList"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.ScaleStateList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.ScaleStateList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.ScaleStateList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.ScaleStateList.IsChanged(ZedGraph.YAxisList)">
            <summary>
            Iterate through the list of <see cref="T:ZedGraph.ScaleState"/> objects, comparing them
            to the state of the specified <see cref="T:ZedGraph.YAxisList"/> <see cref="T:ZedGraph.Axis"/>
            objects.
            </summary>
            <param name="list">A <see cref="T:ZedGraph.YAxisList"/> object specifying a list of
            <see cref="T:ZedGraph.Axis"/> objects to be compared with this <see cref="T:ZedGraph.ScaleStateList"/>.
            </param>
            <returns>true if a difference is found, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.ScaleStateList.IsChanged(ZedGraph.Y2AxisList)">
            <summary>
            Iterate through the list of <see cref="T:ZedGraph.ScaleState"/> objects, comparing them
            to the state of the specified <see cref="T:ZedGraph.Y2AxisList"/> <see cref="T:ZedGraph.Axis"/>
            objects.
            </summary>
            <param name="list">A <see cref="T:ZedGraph.Y2AxisList"/> object specifying a list of
            <see cref="T:ZedGraph.Axis"/> objects to be compared with this <see cref="T:ZedGraph.ScaleStateList"/>.
            </param>
            <returns>true if a difference is found, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.ScaleStateList.ApplyScale(ZedGraph.YAxisList)">
            <summary>
            
            </summary>
            <param name="list"></param>
        </member>
        <member name="M:ZedGraph.ScaleStateList.ApplyScale(ZedGraph.Y2AxisList)">
            <summary>
            
            </summary>
            <param name="list"></param>
        </member>
        <member name="T:ZedGraph.Margin">
            <summary>
            Class that handles that stores the margin properties for the GraphPane
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.1 $ $Date: 2006/06/24 20:26:44 $ </version>
        </member>
        <member name="F:ZedGraph.Margin.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Margin._left">
            <summary>
            Private fields that store the size of the margin around the edge of the pane which will be
            kept blank.  Use the public properties <see cref="P:ZedGraph.Margin.Left"/>, <see cref="P:ZedGraph.Margin.Right"/>,
            <see cref="P:ZedGraph.Margin.Top"/>, <see cref="P:ZedGraph.Margin.Bottom"/> to access these values.
            </summary>
            <value>Units are points (1/72 inch)</value>
        </member>
        <member name="F:ZedGraph.Margin._right">
            <summary>
            Private fields that store the size of the margin around the edge of the pane which will be
            kept blank.  Use the public properties <see cref="P:ZedGraph.Margin.Left"/>, <see cref="P:ZedGraph.Margin.Right"/>,
            <see cref="P:ZedGraph.Margin.Top"/>, <see cref="P:ZedGraph.Margin.Bottom"/> to access these values.
            </summary>
            <value>Units are points (1/72 inch)</value>
        </member>
        <member name="F:ZedGraph.Margin._top">
            <summary>
            Private fields that store the size of the margin around the edge of the pane which will be
            kept blank.  Use the public properties <see cref="P:ZedGraph.Margin.Left"/>, <see cref="P:ZedGraph.Margin.Right"/>,
            <see cref="P:ZedGraph.Margin.Top"/>, <see cref="P:ZedGraph.Margin.Bottom"/> to access these values.
            </summary>
            <value>Units are points (1/72 inch)</value>
        </member>
        <member name="F:ZedGraph.Margin._bottom">
            <summary>
            Private fields that store the size of the margin around the edge of the pane which will be
            kept blank.  Use the public properties <see cref="P:ZedGraph.Margin.Left"/>, <see cref="P:ZedGraph.Margin.Right"/>,
            <see cref="P:ZedGraph.Margin.Top"/>, <see cref="P:ZedGraph.Margin.Bottom"/> to access these values.
            </summary>
            <value>Units are points (1/72 inch)</value>
        </member>
        <member name="M:ZedGraph.Margin.#ctor">
            <summary>
            Constructor to build a <see cref="T:ZedGraph.Margin"/> from the default values.
            </summary>
        </member>
        <member name="M:ZedGraph.Margin.#ctor(ZedGraph.Margin)">
            <summary>
            Copy constructor
            </summary>
            <param name="rhs">the <see cref="T:ZedGraph.Margin"/> instance to be copied.</param>
        </member>
        <member name="M:ZedGraph.Margin.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Margin.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Margin.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Margin.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Margin.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.Margin.Left">
            <summary>
            Gets or sets a float value that determines the margin area between the left edge of the
            <see cref="P:ZedGraph.PaneBase.Rect"/> rectangle and the features of the graph.
            </summary>
            <value>This value is in units of points (1/72 inch), and is scaled
            linearly with the graph size.</value>
            <seealso cref="F:ZedGraph.Margin.Default.Left"/>
            <seealso cref="P:ZedGraph.PaneBase.IsFontsScaled"/>
            <seealso cref="P:ZedGraph.Margin.Right"/>
            <seealso cref="P:ZedGraph.Margin.Top"/>
            <seealso cref="P:ZedGraph.Margin.Bottom"/>
        </member>
        <member name="P:ZedGraph.Margin.Right">
            <summary>
            Gets or sets a float value that determines the margin area between the right edge of the
            <see cref="P:ZedGraph.PaneBase.Rect"/> rectangle and the features of the graph.
            </summary>
            <value>This value is in units of points (1/72 inch), and is scaled
            linearly with the graph size.</value>
            <seealso cref="F:ZedGraph.Margin.Default.Right"/>
            <seealso cref="P:ZedGraph.PaneBase.IsFontsScaled"/>
            <seealso cref="P:ZedGraph.Margin.Left"/>
            <seealso cref="P:ZedGraph.Margin.Top"/>
            <seealso cref="P:ZedGraph.Margin.Bottom"/>
        </member>
        <member name="P:ZedGraph.Margin.Top">
            <summary>
            Gets or sets a float value that determines the margin area between the top edge of the
            <see cref="P:ZedGraph.PaneBase.Rect"/> rectangle and the features of the graph.
            </summary>
            <value>This value is in units of points (1/72 inch), and is scaled
            linearly with the graph size.</value>
            <seealso cref="F:ZedGraph.Margin.Default.Top"/>
            <seealso cref="P:ZedGraph.PaneBase.IsFontsScaled"/>
            <seealso cref="P:ZedGraph.Margin.Left"/>
            <seealso cref="P:ZedGraph.Margin.Right"/>
            <seealso cref="P:ZedGraph.Margin.Bottom"/>
        </member>
        <member name="P:ZedGraph.Margin.Bottom">
            <summary>
            Gets or sets a float value that determines the margin area between the bottom edge of the
            <see cref="P:ZedGraph.PaneBase.Rect"/> rectangle and the features of the graph.
            </summary>
            <value>This value is in units of points (1/72 inch), and is scaled
            linearly with the graph size.</value>
            <seealso cref="F:ZedGraph.Margin.Default.Bottom"/>
            <seealso cref="P:ZedGraph.PaneBase.IsFontsScaled"/>
            <seealso cref="P:ZedGraph.Margin.Left"/>
            <seealso cref="P:ZedGraph.Margin.Right"/>
            <seealso cref="P:ZedGraph.Margin.Top"/>
        </member>
        <member name="P:ZedGraph.Margin.All">
            <summary>
            Concurrently sets all outer margin values to a single value.
            </summary>
            <value>This value is in units of points (1/72 inch), and is scaled
            linearly with the graph size.</value>
            <seealso cref="P:ZedGraph.PaneBase.IsFontsScaled"/>
            <seealso cref="P:ZedGraph.Margin.Bottom"/>
            <seealso cref="P:ZedGraph.Margin.Left"/>
            <seealso cref="P:ZedGraph.Margin.Right"/>
            <seealso cref="P:ZedGraph.Margin.Top"/>
        </member>
        <member name="T:ZedGraph.Margin.Default">
            <summary>
            A simple struct that defines the default property values for the <see cref="T:ZedGraph.Margin"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.Margin.Default.Left">
            <summary>
            The default value for the <see cref="P:ZedGraph.Margin.Left"/> property, which is
            the size of the space on the left side of the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
            <value>Units are points (1/72 inch)</value>
        </member>
        <member name="F:ZedGraph.Margin.Default.Right">
            <summary>
            The default value for the <see cref="P:ZedGraph.Margin.Right"/> property, which is
            the size of the space on the right side of the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
            <value>Units are points (1/72 inch)</value>
        </member>
        <member name="F:ZedGraph.Margin.Default.Top">
            <summary>
            The default value for the <see cref="P:ZedGraph.Margin.Top"/> property, which is
            the size of the space on the top side of the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
            <value>Units are points (1/72 inch)</value>
        </member>
        <member name="F:ZedGraph.Margin.Default.Bottom">
            <summary>
            The default value for the <see cref="P:ZedGraph.Margin.Bottom"/> property, which is
            the size of the space on the bottom side of the <see cref="P:ZedGraph.PaneBase.Rect"/>.
            </summary>
            <value>Units are points (1/72 inch)</value>
        </member>
        <member name="T:ZedGraph.LinearScale">
            <summary>
            The LinearScale class inherits from the <see cref="T:ZedGraph.Scale"/> class, and implements
            the features specific to <see cref="F:ZedGraph.AxisType.Linear"/>.
            </summary>
            <remarks>
            LinearScale is the normal, default cartesian axis.
            </remarks>
            
            <author> John Champion  </author>
            <version> $Revision: 1.9 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="F:ZedGraph.LinearScale.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.LinearScale.#ctor(ZedGraph.Axis)">
            <summary>
            Default constructor that defines the owner <see cref="T:ZedGraph.Axis"/>
            (containing object) for this new object.
            </summary>
            <param name="owner">The owner, or containing object, of this instance</param>
        </member>
        <member name="M:ZedGraph.LinearScale.#ctor(ZedGraph.Scale,ZedGraph.Axis)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.LinearScale"/> object from which to copy</param>
            <param name="owner">The <see cref="T:ZedGraph.Axis"/> object that will own the
            new instance of <see cref="T:ZedGraph.LinearScale"/></param>
        </member>
        <member name="M:ZedGraph.LinearScale.Clone(ZedGraph.Axis)">
            <summary>
            Create a new clone of the current item, with a new owner assignment
            </summary>
            <param name="owner">The new <see cref="T:ZedGraph.Axis"/> instance that will be
            the owner of the new Scale</param>
            <returns>A new <see cref="T:ZedGraph.Scale"/> clone.</returns>
        </member>
        <member name="M:ZedGraph.LinearScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)">
            <summary>
            Select a reasonable linear axis scale given a range of data values.
            </summary>
            <remarks>
            This method only applies to <see cref="F:ZedGraph.AxisType.Linear"/> type axes, and it
            is called by the general <see cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/> method.  The scale range is chosen
            based on increments of 1, 2, or 5 (because they are even divisors of 10).  This
            method honors the <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/> autorange settings.
            In the event that any of the autorange settings are false, the
            corresponding <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>, or <see cref="P:ZedGraph.Scale.MajorStep"/>
            setting is explicitly honored, and the remaining autorange settings (if any) will
            be calculated to accomodate the non-autoranged values.  The basic defaults for
            scale selection are defined using <see cref="F:ZedGraph.Scale.Default.ZeroLever"/>,
            <see cref="F:ZedGraph.Scale.Default.TargetXSteps"/>, and <see cref="F:ZedGraph.Scale.Default.TargetYSteps"/>
            from the <see cref="T:ZedGraph.Scale.Default"/> default class.
            <para>On Exit:</para>
            <para><see cref="P:ZedGraph.Scale.Min"/> is set to scale minimum (if <see cref="P:ZedGraph.Scale.MinAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Max"/> is set to scale maximum (if <see cref="P:ZedGraph.Scale.MaxAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MajorStep"/> is set to scale step size (if <see cref="P:ZedGraph.Scale.MajorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MinorStep"/> is set to scale minor step size (if <see cref="P:ZedGraph.Scale.MinorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Mag"/> is set to a magnitude multiplier according to the data</para>
            <para><see cref="P:ZedGraph.Scale.Format"/> is set to the display format for the values (this controls the
            number of decimal places, whether there are thousands separators, currency types, etc.)</para>
            </remarks>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object
            associated with this <see cref="T:ZedGraph.Axis"/></param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <seealso cref="M:ZedGraph.LinearScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>
            <seealso cref="F:ZedGraph.AxisType.Linear"/>
        </member>
        <member name="M:ZedGraph.LinearScale.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.LinearScale.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.LinearScale.Type">
            <summary>
            Return the <see cref="T:ZedGraph.AxisType"/> for this <see cref="T:ZedGraph.Scale"/>, which is
            <see cref="F:ZedGraph.AxisType.Linear"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.HiLowBar">
            <summary>
            This class handles the drawing of the curve <see cref="T:ZedGraph.HiLowBar"/> objects.
            The Hi-Low Bars are the "floating" bars that have a lower and upper value and
            appear at each defined point.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.16 $ $Date: 2007/01/25 07:56:08 $ </version>
        </member>
        <member name="T:ZedGraph.Bar">
            <summary>
            A class representing all the characteristics of the bar
            segments that make up a curve on the graph.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.28 $ $Date: 2007/01/25 07:56:08 $ </version>
        </member>
        <member name="F:ZedGraph.Bar.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Bar._fill">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.Bar"/>.  Use the public property <see cref="P:ZedGraph.Bar.Fill"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Bar._border">
            <summary>
            Private field that stores the <see cref="P:ZedGraph.Bar.Border"/> class that defines the
            properties of the border around this <see cref="T:ZedGraph.BarItem"/>. Use the public
            property <see cref="P:ZedGraph.Bar.Border"/> to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.Bar.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.Bar"/> properties to default
            values as defined in the <see cref="T:ZedGraph.Bar.Default"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.Bar.#ctor(System.Drawing.Color)">
            <summary>
            Default constructor that sets the 
            <see cref="T:System.Drawing.Color"/> as specified, and the remaining
            <see cref="T:ZedGraph.Bar"/> properties to default
            values as defined in the <see cref="T:ZedGraph.Bar.Default"/> class.
            The specified color is only applied to the
            <see cref="P:ZedGraph.Fill.Color"/>, and the <see cref="P:ZedGraph.LineBase.Color"/>
            will be defaulted.
            </summary>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value indicating
            the <see cref="P:ZedGraph.Fill.Color"/>
            of the Bar.
            </param>
        </member>
        <member name="M:ZedGraph.Bar.#ctor(ZedGraph.Bar)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The Bar object from which to copy</param>
        </member>
        <member name="M:ZedGraph.Bar.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Bar.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Bar.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Bar.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Bar.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.Bar.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Single,System.Single,System.Single,System.Single,System.Boolean,System.Boolean,ZedGraph.PointPair)">
            <summary>
            Draw the <see cref="T:ZedGraph.Bar"/> to the specified <see cref="T:System.Drawing.Graphics"/> device
            at the specified location.  This routine draws a single bar.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="left">The x position of the left side of the bar in
            pixel units</param>
            <param name="right">The x position of the right side of the bar in
            pixel units</param>
            <param name="top">The y position of the top of the bar in
            pixel units</param>
            <param name="bottom">The y position of the bottom of the bar in
            pixel units</param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.
            </param>
            <param name="fullFrame">true to draw the bottom portion of the border around the
            bar (this is for legend entries)</param> 
            <param name="dataValue">The data value to be used for a value-based
            color gradient.  This is only applicable for <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/> or <see cref="F:ZedGraph.FillType.GradientByZ"/>.</param>
            <param name="isSelected">Indicates that the <see cref="T:ZedGraph.Bar"/> should be drawn
            with attributes from the <see cref="T:ZedGraph.Selection"/> class.
            </param>
        </member>
        <member name="M:ZedGraph.Bar.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single,System.Boolean,System.Boolean,ZedGraph.PointPair)">
            <summary>
            Draw the <see cref="T:ZedGraph.Bar"/> to the specified <see cref="T:System.Drawing.Graphics"/> device
            at the specified location.  This routine draws a single bar.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="rect">The rectangle (pixels) to contain the bar</param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.
            </param>
            <param name="fullFrame">true to draw the bottom portion of the border around the
            bar (this is for legend entries)</param> 
            <param name="dataValue">The data value to be used for a value-based
            color gradient.  This is only applicable for <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/> or <see cref="F:ZedGraph.FillType.GradientByZ"/>.</param>
            <param name="isSelected">Indicates that the <see cref="T:ZedGraph.Bar"/> should be drawn
            with attributes from the <see cref="T:ZedGraph.Selection"/> class.
            </param>
        </member>
        <member name="M:ZedGraph.Bar.DrawBars(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.CurveItem,ZedGraph.Axis,ZedGraph.Axis,System.Single,System.Int32,System.Single)">
            <summary>
            Draw the this <see cref="T:ZedGraph.Bar"/> to the specified <see cref="T:System.Drawing.Graphics"/>
            device as a bar at each defined point. This method
            is normally only called by the <see cref="M:ZedGraph.BarItem.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)"/> method of the
            <see cref="T:ZedGraph.BarItem"/> object
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.CurveItem"/> object representing the
            <see cref="T:ZedGraph.Bar"/>'s to be drawn.</param>
            <param name="baseAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the base (independent)
            axis for the <see cref="T:ZedGraph.Bar"/></param>
            <param name="valueAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the value (dependent)
            axis for the <see cref="T:ZedGraph.Bar"/></param>
            <param name="barWidth">
            The width of each bar, in pixels.
            </param>
            <param name="pos">
            The ordinal position of the this bar series (0=first bar, 1=second bar, etc.)
            in the cluster of bars.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.Bar.DrawSingleBar(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.CurveItem,ZedGraph.Axis,ZedGraph.Axis,System.Int32,System.Int32,System.Single,System.Single)">
            <summary>
            Draw the specified single bar (an individual "point") of this series to the specified
            <see cref="T:System.Drawing.Graphics"/> device.  This method is not as efficient as
            <see cref="M:ZedGraph.Bar.DrawBars(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.CurveItem,ZedGraph.Axis,ZedGraph.Axis,System.Single,System.Int32,System.Single)"/>, which draws the bars for all points.  It is intended to be used
            only for <see cref="F:ZedGraph.BarType.SortedOverlay"/>, which requires special handling of each bar.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.CurveItem"/> object representing the
            <see cref="T:ZedGraph.Bar"/>'s to be drawn.</param>
            <param name="baseAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the base (independent)
            axis for the <see cref="T:ZedGraph.Bar"/></param>
            <param name="valueAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the value (dependent)
            axis for the <see cref="T:ZedGraph.Bar"/></param>
            <param name="pos">
            The ordinal position of the this bar series (0=first bar, 1=second bar, etc.)
            in the cluster of bars.
            </param>
            <param name="index">
            The zero-based index number for the single bar to be drawn.
            </param>
            <param name="barWidth">
            The width of each bar, in pixels.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.Bar.DrawSingleBar(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.CurveItem,System.Int32,System.Int32,ZedGraph.Axis,ZedGraph.Axis,System.Single,System.Single)">
            <summary>
            Protected internal routine that draws the specified single bar (an individual "point")
            of this series to the specified <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.CurveItem"/> object representing the
            <see cref="T:ZedGraph.Bar"/>'s to be drawn.</param>
            <param name="index">
            The zero-based index number for the single bar to be drawn.
            </param>
            <param name="pos">
            The ordinal position of the this bar series (0=first bar, 1=second bar, etc.)
            in the cluster of bars.
            </param>
            <param name="baseAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the base (independent)
            axis for the <see cref="T:ZedGraph.Bar"/></param>
            <param name="valueAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the value (dependent)
            axis for the <see cref="T:ZedGraph.Bar"/></param>
            <param name="barWidth">
            The width of each bar, in pixels.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="P:ZedGraph.Bar.Border">
            <summary>
            The <see cref="P:ZedGraph.Bar.Border"/> object used to draw the border around the <see cref="T:ZedGraph.Bar"/>.
            </summary>
            <seealso cref="F:ZedGraph.Bar.Default.IsBorderVisible"/>
            <seealso cref="F:ZedGraph.Bar.Default.BorderWidth"/>
            <seealso cref="F:ZedGraph.Bar.Default.BorderColor"/>
        </member>
        <member name="P:ZedGraph.Bar.Fill">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.Bar"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.Bar.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.Bar"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.Bar.Default.BorderWidth">
            <summary>
            The default pen width to be used for drawing the border around the bars
            (<see cref="P:ZedGraph.LineBase.Width"/> property).  Units are points.
            </summary>
        </member>
        <member name="F:ZedGraph.Bar.Default.FillType">
            <summary>
            The default fill mode for bars (<see cref="P:ZedGraph.Fill.Type"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Bar.Default.IsBorderVisible">
            <summary>
            The default border mode for bars (<see cref="P:ZedGraph.LineBase.IsVisible"/> property).
            true to display frames around bars, false otherwise
            </summary>
        </member>
        <member name="F:ZedGraph.Bar.Default.BorderColor">
            <summary>
            The default color for drawing frames around bars
            (<see cref="P:ZedGraph.LineBase.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Bar.Default.FillColor">
            <summary>
            The default color for filling in the bars
            (<see cref="P:ZedGraph.Fill.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Bar.Default.FillBrush">
            <summary>
            The default custom brush for filling in the bars
            (<see cref="P:ZedGraph.Fill.Brush"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.HiLowBar.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.HiLowBar._size">
            <summary>
            Private field that stores the size (width) of this
            <see cref="T:ZedGraph.HiLowBar"/> in points (1/72 inch).  Use the public
            property <see cref="P:ZedGraph.HiLowBar.Size"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.HiLowBar._isAutoSize">
            <summary>
            Private field that determines whether the bar width will be based on
            the <see cref="P:ZedGraph.HiLowBar.Size"/> value, or it will be based on available
            space similar to <see cref="T:ZedGraph.BarItem"/> objects.  Use the public property
            <see cref="P:ZedGraph.HiLowBar.IsAutoSize"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.HiLowBar._userScaleSize">
            <summary>
            The result of the autosize calculation, which is the size of the bars in
            user scale units.  This is converted to pixels at draw time.
            </summary>
        </member>
        <member name="M:ZedGraph.HiLowBar.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.HiLowBar"/> properties to default
            values as defined in the <see cref="T:ZedGraph.Bar.Default"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.HiLowBar.#ctor(System.Drawing.Color)">
            <summary>
            Default constructor that sets the 
            <see cref="T:System.Drawing.Color"/> as specified, and the remaining
            <see cref="T:ZedGraph.HiLowBar"/> properties to default
            values as defined in the <see cref="T:ZedGraph.Bar.Default"/> class.
            The specified color is only applied to the
            <see cref="P:ZedGraph.Fill.Color"/>, and the <see cref="P:ZedGraph.LineBase.Color"/>
            will be defaulted.
            </summary>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value indicating
            the <see cref="P:ZedGraph.Fill.Color"/>
            of the Bar.
            </param>
        </member>
        <member name="M:ZedGraph.HiLowBar.#ctor(System.Drawing.Color,System.Single)">
            <summary>
            Default constructor that sets the 
            <see cref="T:System.Drawing.Color"/> and <see cref="P:ZedGraph.HiLowBar.Size"/> as specified, and the remaining
            <see cref="T:ZedGraph.HiLowBar"/> properties to default
            values as defined in the <see cref="T:ZedGraph.Bar.Default"/> class.
            The specified color is only applied to the
            <see cref="P:ZedGraph.Fill.Color"/>, and the <see cref="P:ZedGraph.LineBase.Color"/>
            will be defaulted.
            </summary>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value indicating
            the <see cref="P:ZedGraph.Fill.Color"/>
            of the Bar.
            </param>
            <param name="size">The size (width) of the <see cref="T:ZedGraph.HiLowBar"/>'s, in points
            (1/72nd inch)</param>
        </member>
        <member name="M:ZedGraph.HiLowBar.#ctor(ZedGraph.HiLowBar)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.HiLowBar"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.HiLowBar.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.HiLowBar.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.HiLowBar.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.HiLowBar.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.HiLowBar.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.HiLowBar.DrawSingleBar(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.CurveItem,System.Int32,System.Int32,ZedGraph.Axis,ZedGraph.Axis,System.Single,System.Single)">
            <summary>
            Protected internal routine that draws the specified single bar (an individual "point")
            of this series to the specified <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.CurveItem"/> object representing the
            <see cref="T:ZedGraph.Bar"/>'s to be drawn.</param>
            <param name="index">
            The zero-based index number for the single bar to be drawn.
            </param>
            <param name="pos">
            The ordinal position of the this bar series (0=first bar, 1=second bar, etc.)
            in the cluster of bars.
            </param>
            <param name="baseAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the base (independent)
            axis for the <see cref="T:ZedGraph.Bar"/></param>
            <param name="valueAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the value (dependent)
            axis for the <see cref="T:ZedGraph.Bar"/></param>
            <param name="barWidth">
            The width of each bar, in pixels.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.HiLowBar.GetBarWidth(ZedGraph.GraphPane,ZedGraph.Axis,System.Single)">
            <summary>
            Returns the width of the bar, in pixels, based on the settings for
            <see cref="P:ZedGraph.HiLowBar.Size"/> and <see cref="P:ZedGraph.HiLowBar.IsAutoSize"/>.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> object.</param>
            <param name="baseAxis">The <see cref="T:ZedGraph.Axis"/> object that
            represents the bar base (independent axis).</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>The width of each bar, in pixel units</returns>
        </member>
        <member name="P:ZedGraph.HiLowBar.Size">
            <summary>
            Gets or sets the size of the <see cref="T:ZedGraph.HiLowBar"/>
            </summary>
            <remarks>The size of the bars can be set by this value, which
            is then scaled according to the scaleFactor (see
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>).  Alternatively,
            if <see cref="P:ZedGraph.HiLowBar.IsAutoSize"/> is true, the bar width will
            be set according to the maximum available cluster width less
            the cluster gap (see <see cref="M:ZedGraph.BarSettings.GetClusterWidth"/>
            and <see cref="P:ZedGraph.BarSettings.MinClusterGap"/>).  That is, if
            <see cref="P:ZedGraph.HiLowBar.IsAutoSize"/> is true, then the value of
            <see cref="P:ZedGraph.HiLowBar.Size"/> will be ignored.  If you modify the value of Size,
            then <see cref="P:ZedGraph.HiLowBar.IsAutoSize"/> will be automatically set to false.
            </remarks>
            <value>Size in points (1/72 inch)</value>
            <seealso cref="F:ZedGraph.HiLowBar.Default.Size"/>
        </member>
        <member name="P:ZedGraph.HiLowBar.IsAutoSize">
            <summary>
            Determines whether the bar width will be based on
            the <see cref="P:ZedGraph.HiLowBar.Size"/> value, or it will be based on available
            space similar to <see cref="T:ZedGraph.BarItem"/> objects.
            </summary>
            <remarks>If true, then the value of <see cref="P:ZedGraph.HiLowBar.Size"/> is ignored. 
            If this value is true, then <see cref="P:ZedGraph.BarSettings.MinClusterGap"/> will be used to
            determine the total space between each bar.  If the base axis is non-ordinal, then
            <see cref="P:ZedGraph.BarSettings.ClusterScaleWidth"/> will be active.  In this case, you may
            want to make sure that <see cref="P:ZedGraph.BarSettings.ClusterScaleWidthAuto"/> is true.
            </remarks>
        </member>
        <member name="T:ZedGraph.HiLowBar.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.HiLowBar"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.HiLowBar.Default.Size">
            <summary>
            The default size (width) for the bars (<see cref="P:ZedGraph.HiLowBar.Size"/> property),
            in units of points.
            </summary>
        </member>
        <member name="F:ZedGraph.HiLowBar.Default.IsAutoSize">
            <summary>
            Default value for the <see cref="P:ZedGraph.HiLowBar.IsAutoSize"/> property.
            </summary>
        </member>
        <member name="T:ZedGraph.DateAsOrdinalScale">
            <summary>
            The DateAsOrdinalScale class inherits from the <see cref="T:ZedGraph.Scale"/> class, and implements
            the features specific to <see cref="F:ZedGraph.AxisType.DateAsOrdinal"/>.
            </summary>
            <remarks>DateAsOrdinalScale is an ordinal axis that will have labels formatted with dates from the
            actual data values of the first <see cref="T:ZedGraph.CurveItem"/> in the <see cref="T:ZedGraph.CurveList"/>.
            Although the tics are labeled with real data values, the actual points will be
            evenly-spaced in spite of the data values.  For example, if the X values of the first curve
            are 1, 5, and 100, then the tic labels will show 1, 5, and 100, but they will be equal
            distance from each other.
            </remarks>
            
            <author> John Champion  </author>
            <version> $Revision: 1.9 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="F:ZedGraph.DateAsOrdinalScale.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.DateAsOrdinalScale.#ctor(ZedGraph.Axis)">
            <summary>
            Default constructor that defines the owner <see cref="T:ZedGraph.Axis"/>
            (containing object) for this new object.
            </summary>
            <param name="owner">The owner, or containing object, of this instance</param>
        </member>
        <member name="M:ZedGraph.DateAsOrdinalScale.#ctor(ZedGraph.Scale,ZedGraph.Axis)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.DateAsOrdinalScale"/> object from which to copy</param>
            <param name="owner">The <see cref="T:ZedGraph.Axis"/> object that will own the
            new instance of <see cref="T:ZedGraph.DateAsOrdinalScale"/></param>
        </member>
        <member name="M:ZedGraph.DateAsOrdinalScale.Clone(ZedGraph.Axis)">
            <summary>
            Create a new clone of the current item, with a new owner assignment
            </summary>
            <param name="owner">The new <see cref="T:ZedGraph.Axis"/> instance that will be
            the owner of the new Scale</param>
            <returns>A new <see cref="T:ZedGraph.Scale"/> clone.</returns>
        </member>
        <member name="M:ZedGraph.DateAsOrdinalScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)">
            <summary>
            Select a reasonable ordinal axis scale given a range of data values, with the expectation that
            dates will be displayed.
            </summary>
            <remarks>
            This method only applies to <see cref="F:ZedGraph.AxisType.DateAsOrdinal"/> type axes, and it
            is called by the general <see cref="M:ZedGraph.DateAsOrdinalScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/> method.  For this type,
            the first curve is the "master", which contains the dates to be applied.
            <para>On Exit:</para>
            <para><see cref="P:ZedGraph.Scale.Min"/> is set to scale minimum (if <see cref="P:ZedGraph.Scale.MinAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Max"/> is set to scale maximum (if <see cref="P:ZedGraph.Scale.MaxAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MajorStep"/> is set to scale step size (if <see cref="P:ZedGraph.Scale.MajorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MinorStep"/> is set to scale minor step size (if <see cref="P:ZedGraph.Scale.MinorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Mag"/> is set to a magnitude multiplier according to the data</para>
            <para><see cref="P:ZedGraph.Scale.Format"/> is set to the display format for the values (this controls the
            number of decimal places, whether there are thousands separators, currency types, etc.)</para>
            </remarks>
            <param name="pane">A reference to the <see cref="T:ZedGraph.GraphPane"/> object
            associated with this <see cref="T:ZedGraph.Axis"/></param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <seealso cref="M:ZedGraph.DateAsOrdinalScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>
            <seealso cref="F:ZedGraph.AxisType.Ordinal"/>
        </member>
        <member name="M:ZedGraph.DateAsOrdinalScale.MakeLabel(ZedGraph.GraphPane,System.Int32,System.Double)">
            <summary>
            Make a value label for an <see cref="F:ZedGraph.AxisType.DateAsOrdinal"/> <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="index">
            The zero-based, ordinal index of the label to be generated.  For example, a value of 2 would
            cause the third value label on the axis to be generated.
            </param>
            <param name="dVal">
            The numeric value associated with the label.  This value is ignored for log
            (<see cref="P:ZedGraph.Scale.IsLog"/>)
            and text (<see cref="P:ZedGraph.Scale.IsText"/>) type axes.
            </param>
            <returns>The resulting value label as a <see cref="T:System.String"/></returns>
        </member>
        <member name="M:ZedGraph.DateAsOrdinalScale.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.DateAsOrdinalScale.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.DateAsOrdinalScale.Type">
            <summary>
            Return the <see cref="T:ZedGraph.AxisType"/> for this <see cref="T:ZedGraph.Scale"/>, which is
            <see cref="F:ZedGraph.AxisType.DateAsOrdinal"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.DateAsOrdinalScale.Min">
            <summary>
            Gets or sets the minimum value for this scale.
            </summary>
            <remarks>
            The set property is specifically adapted for <see cref="F:ZedGraph.AxisType.DateAsOrdinal"/> scales,
            in that it automatically limits the value to the range of valid dates for the
            <see cref="T:ZedGraph.XDate"/> struct.
            </remarks>
        </member>
        <member name="P:ZedGraph.DateAsOrdinalScale.Max">
            <summary>
            Gets or sets the maximum value for this scale.
            </summary>
            <remarks>
            The set property is specifically adapted for <see cref="F:ZedGraph.AxisType.DateAsOrdinal"/> scales,
            in that it automatically limits the value to the range of valid dates for the
            <see cref="T:ZedGraph.XDate"/> struct.
            </remarks>
        </member>
        <member name="T:ZedGraph.CurveList">
            <summary>
            A collection class containing a list of <see cref="T:ZedGraph.CurveItem"/> objects
            that define the set of curves to be displayed on the graph.
            </summary>
            
            <author> John Champion
            modified by Jerry Vos</author>
            <version> $Revision: 3.40 $ $Date: 2007/01/21 07:49:05 $ </version>
        </member>
        <member name="M:ZedGraph.CurveList.HasData">
            <summary>
            Determine if there is any data in any of the <see cref="T:ZedGraph.CurveItem"/>
            objects for this graph.  This method does not verify valid data, it
            only checks to see if <see cref="P:ZedGraph.CurveItem.NPts"/> &gt; 0.
            </summary>
            <returns>true if there is any data, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.CurveList.#ctor">
            <summary>
            Default constructor for the collection class
            </summary>
        </member>
        <member name="M:ZedGraph.CurveList.#ctor(ZedGraph.CurveList)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The XAxis object from which to copy</param>
        </member>
        <member name="M:ZedGraph.CurveList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.CurveList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.CurveList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.CurveList.IndexOf(System.String)">
            <summary>
            Return the zero-based position index of the
            <see cref="T:ZedGraph.CurveItem"/> with the specified <see cref="P:ZedGraph.CurveItem.Label"/>.
            </summary>
            <param name="label">The <see cref="T:System.String"/> label that is in the
            <see cref="P:ZedGraph.CurveItem.Label"/> attribute of the item to be found.
            </param>
            <returns>The zero-based index of the specified <see cref="T:ZedGraph.CurveItem"/>,
            or -1 if the <see cref="T:ZedGraph.CurveItem"/> is not in the list</returns>
            <seealso cref="M:ZedGraph.CurveList.IndexOfTag(System.String)"/>
        </member>
        <member name="M:ZedGraph.CurveList.IndexOfTag(System.String)">
            <summary>
            Return the zero-based position index of the
            <see cref="T:ZedGraph.CurveItem"/> with the specified <see cref="F:ZedGraph.CurveItem.Tag"/>.
            </summary>
            <remarks>In order for this method to work, the <see cref="F:ZedGraph.CurveItem.Tag"/>
            property must be of type <see cref="T:System.String"/>.</remarks>
            <param name="tag">The <see cref="T:System.String"/> tag that is in the
            <see cref="F:ZedGraph.CurveItem.Tag"/> attribute of the item to be found.
            </param>
            <returns>The zero-based index of the specified <see cref="T:ZedGraph.CurveItem"/>,
            or -1 if the <see cref="T:ZedGraph.CurveItem"/> is not in the list</returns>
        </member>
        <member name="M:ZedGraph.CurveList.Sort(ZedGraph.SortType,System.Int32)">
            <summary>
            Sorts the list according to the point values at the specified index and
            for the specified axis.
            </summary>
        </member>
        <member name="M:ZedGraph.CurveList.Move(System.Int32,System.Int32)">
            <summary>
            Move the position of the object at the specified index
            to the new relative position in the list.</summary>
            <remarks>For Graphic type objects, this method controls the
            Z-Order of the items.  Objects at the beginning of the list
            appear in front of objects at the end of the list.</remarks>
            <param name="index">The zero-based index of the object
            to be moved.</param>
            <param name="relativePos">The relative number of positions to move
            the object.  A value of -1 will move the
            object one position earlier in the list, a value
            of 1 will move it one position later.  To move an item to the
            beginning of the list, use a large negative value (such as -999).
            To move it to the end of the list, use a large positive value.
            </param>
            <returns>The new position for the object, or -1 if the object
            was not found.</returns>
        </member>
        <member name="M:ZedGraph.CurveList.GetRange(System.Boolean,System.Boolean,ZedGraph.GraphPane)">
            <summary>
            Go through each <see cref="T:ZedGraph.CurveItem"/> object in the collection,
            calling the <see cref="M:ZedGraph.CurveItem.GetRange(System.Double@,System.Double@,System.Double@,System.Double@,System.Boolean,System.Boolean,ZedGraph.GraphPane)"/> member to 
            determine the minimum and maximum values in the
            <see cref="P:ZedGraph.CurveItem.Points"/> list of data value pairs.  If the curves include 
            a stack bar, handle within the current GetRange method. In the event that no
            data are available, a default range of min=0.0 and max=1.0 are returned.
            If the Y axis has a valid data range and the Y2 axis not, then the Y2
            range will be a duplicate of the Y range.  Vice-versa for the Y2 axis
            having valid data when the Y axis does not.
            If any <see cref="T:ZedGraph.CurveItem"/> in the list has a missing
            <see cref="T:ZedGraph.PointPairList"/>, a new empty one will be generated.
            </summary>
            <param name="bIgnoreInitial">ignoreInitial is a boolean value that
            affects the data range that is considered for the automatic scale
            ranging (see <see cref="P:ZedGraph.GraphPane.IsIgnoreInitial"/>).  If true, then initial
            data points where the Y value is zero are not included when
            automatically determining the scale <see cref="P:ZedGraph.Scale.Min"/>,
            <see cref="P:ZedGraph.Scale.Max"/>, and <see cref="P:ZedGraph.Scale.MajorStep"/> size.  All data after
            the first non-zero Y value are included.
            </param>
            <param name="isBoundedRanges">
            Determines if the auto-scaled axis ranges will subset the
            data points based on any manually set scale range values.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <seealso cref="P:ZedGraph.GraphPane.IsBoundedRanges"/>
        </member>
        <member name="M:ZedGraph.CurveList.GetStackRange(ZedGraph.GraphPane,ZedGraph.CurveItem,System.Double@,System.Double@,System.Double@,System.Double@)">
            <summary>
            Calculate the range for stacked bars and lines.
            </summary>
            <remarks>This method is required for the stacked
            types because (for bars), the negative values are a separate stack than the positive
            values.  If you just sum up the bars, you will get the sum of the positive plus negative,
            which is less than the maximum positive value and greater than the maximum negative value.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">The <see cref="T:ZedGraph.CurveItem"/> for which to calculate the range</param>
            <param name="tXMinVal">The minimum X value so far</param>
            <param name="tYMinVal">The minimum Y value so far</param>
            <param name="tXMaxVal">The maximum X value so far</param>
            <param name="tYMaxVal">The maximum Y value so far</param>
            <seealso cref="P:ZedGraph.GraphPane.IsBoundedRanges"/>
        </member>
        <member name="M:ZedGraph.CurveList.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single)">
            <summary>
            Render all the <see cref="T:ZedGraph.CurveItem"/> objects in the list to the
            specified <see cref="T:System.Drawing.Graphics"/>
            device by calling the <see cref="M:ZedGraph.CurveItem.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)"/> member function of
            each <see cref="T:ZedGraph.CurveItem"/> object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.CurveList.GetBarItemPos(ZedGraph.GraphPane,ZedGraph.BarItem)">
            <summary>
            Find the ordinal position of the specified <see cref="T:ZedGraph.BarItem"/> within
            the <see cref="T:ZedGraph.CurveList"/>.  This position only counts <see cef="BarItem"/>
            types, ignoring all other types.
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> of interest</param>
            <param name="barItem">The <see cref="T:ZedGraph.BarItem"/> for which to search.</param>
            <returns>The ordinal position of the specified bar, or -1 if the bar
            was not found.</returns>
        </member>
        <member name="P:ZedGraph.CurveList.MaxPts">
            <summary>
            Read only value for the maximum number of points in any of the curves
            in the list.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveList.NumBars">
            <summary>
            Read only property that returns the number of curves in the list that are of
            type <see cref="T:ZedGraph.Bar"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveList.NumPies">
            <summary>
            Read only property that returns the number of pie slices in the list (class type is
            <see cref="T:ZedGraph.PieItem"/> ).
            </summary>
        </member>
        <member name="P:ZedGraph.CurveList.IsPieOnly">
            <summary>
            Read only property that determines if all items in the <see cref="T:ZedGraph.CurveList"/> are
            Pies.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveList.Backward">
            <summary>
            Iterate backwards through the <see cref="T:ZedGraph.CurveList"/> items.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveList.Forward">
            <summary>
            Iterate forward through the <see cref="T:ZedGraph.CurveList"/> items.
            </summary>
        </member>
        <member name="P:ZedGraph.CurveList.Item(System.String)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.CurveItem"/> object by
            its <see cref="P:ZedGraph.CurveItem.Label"/> string.
            </summary>
            <param name="label">The string label of the
            <see cref="T:ZedGraph.CurveItem"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.CurveItem"/> object reference.</value>
        </member>
        <member name="T:ZedGraph.YAxis">
            <summary>
            <see cref="T:ZedGraph.YAxis"/> inherits from <see cref="T:ZedGraph.Axis"/>, and defines the
            special characteristics of a vertical axis, specifically located on
            the right side of the <see cref="P:ZedGraph.Chart.Rect"/> of the <see cref="T:ZedGraph.GraphPane"/>
            object
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.15 $ $Date: 2006/11/25 17:17:27 $ </version>
        </member>
        <member name="F:ZedGraph.YAxis.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.YAxis.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.YAxis"/> properties to
            default values as defined in the <see cref="T:ZedGraph.YAxis.Default"/> class
            </summary>
        </member>
        <member name="M:ZedGraph.YAxis.#ctor(System.String)">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.YAxis"/> properties to
            default values as defined in the <see cref="T:ZedGraph.YAxis.Default"/> class, except
            for the axis title
            </summary>
            <param name="title">The <see cref="P:ZedGraph.Axis.Title"/> for this axis</param>
        </member>
        <member name="M:ZedGraph.YAxis.#ctor(ZedGraph.YAxis)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The YAxis object from which to copy</param>
        </member>
        <member name="M:ZedGraph.YAxis.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.YAxis.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.YAxis.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.YAxis.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.YAxis.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.YAxis.SetTransformMatrix(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single)">
            <summary>
            Setup the Transform Matrix to handle drawing of this <see cref="T:ZedGraph.YAxis"/>
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.YAxis.IsPrimary(ZedGraph.GraphPane)">
            <summary>
            Determines if this <see cref="T:ZedGraph.Axis"/> object is a "primary" one.
            </summary>
            <remarks>
            The primary axes are the <see cref="T:ZedGraph.XAxis"/> (always), the first
            <see cref="T:ZedGraph.YAxis"/> in the <see cref="P:ZedGraph.GraphPane.YAxisList"/> 
            (<see cref="P:ZedGraph.CurveItem.YAxisIndex"/> = 0),  and the first
            <see cref="T:ZedGraph.Y2Axis"/> in the <see cref="P:ZedGraph.GraphPane.Y2AxisList"/> 
            (<see cref="P:ZedGraph.CurveItem.YAxisIndex"/> = 0).  Note that
            <see cref="P:ZedGraph.GraphPane.YAxis"/> and <see cref="P:ZedGraph.GraphPane.Y2Axis"/>
            always reference the primary axes.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <returns>true for a primary <see cref="T:ZedGraph.Axis"/>, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.YAxis.CalcCrossShift(ZedGraph.GraphPane)">
            <summary>
            Calculate the "shift" size, in pixels, in order to shift the axis from its default
            location to the value specified by <see cref="P:ZedGraph.Axis.Cross"/>.
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <returns>The shift amount measured in pixels</returns>
        </member>
        <member name="T:ZedGraph.YAxis.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.YAxis"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.YAxis.Default.IsVisible">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.YAxis"/>
            (<see cref="P:ZedGraph.Axis.IsVisible"/> property). true to display the scale
            values, title, tic marks, false to hide the axis entirely.
            </summary>
        </member>
        <member name="F:ZedGraph.YAxis.Default.IsZeroLine">
            <summary>
            Determines if a line will be drawn at the zero value for the 
            <see cref="T:ZedGraph.YAxis"/>, that is, a line that
            divides the negative values from positive values.
            <seealso cref="P:ZedGraph.MajorGrid.IsZeroLine"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.StickItem">
            <summary>
            Encapsulates a curve type that is displayed as a series of vertical "sticks",
            one at each defined point.
            </summary>
            <remarks>
            The sticks run from the zero value of the Y axis, to the Y point defined in each
            <see cref="T:ZedGraph.PointPair"/> of the <see cref="T:ZedGraph.IPointList"/> (see <see cref="P:ZedGraph.CurveItem.Points"/>).
            The properties of the sticks are defined in the <see cref="T:ZedGraph.Line"/> property.
            Normally, the <see cref="T:ZedGraph.Symbol"/> is not visible.  However, if you manually enable the
            <see cref="T:ZedGraph.Symbol"/> using the <see cref="P:ZedGraph.Symbol.IsVisible"/> property, the
            symbols will be drawn at the "Z" value from each <see cref="T:ZedGraph.PointPair"/> (see
            <see cref="F:ZedGraph.PointPair.Z"/>).
            </remarks>
            
            <author> John Champion </author>
            <version> $Revision: 1.7 $ $Date: 2007/01/25 07:56:09 $ </version>
        </member>
        <member name="F:ZedGraph.StickItem.schema3">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.StickItem.IsZIncluded(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the Z data range should be included in the axis scaling calculations.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the Z data are included, false otherwise</value>
        </member>
        <member name="M:ZedGraph.StickItem.IsXIndependent(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the X axis is the independent axis for this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the X axis is independent, false otherwise</value>
        </member>
        <member name="M:ZedGraph.StickItem.#ctor(System.String)">
            <summary>
            Create a new <see cref="T:ZedGraph.StickItem"/>, specifying only the legend <see cref="P:ZedGraph.CurveItem.Label"/>.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
        </member>
        <member name="M:ZedGraph.StickItem.#ctor(System.String,System.Double[],System.Double[],System.Drawing.Color,System.Single)">
            <summary>
            Create a new <see cref="T:ZedGraph.StickItem"/> using the specified properties.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
            <param name="x">An array of double precision values that define
            the independent (X axis) values for this curve</param>
            <param name="y">An array of double precision values that define
            the dependent (Y axis) values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="T:ZedGraph.Line"/> and <see cref="T:ZedGraph.Symbol"/> properties.
            </param>
            <param name="lineWidth">The width (in points) to be used for the <see cref="T:ZedGraph.Line"/>.  This
            width is scaled based on <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>.  Use a value of zero to
            hide the line (see <see cref="P:ZedGraph.LineBase.IsVisible"/>).</param>
        </member>
        <member name="M:ZedGraph.StickItem.#ctor(System.String,System.Double[],System.Double[],System.Drawing.Color)">
            <summary>
            Create a new <see cref="T:ZedGraph.StickItem"/> using the specified properties.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
            <param name="x">An array of double precision values that define
            the independent (X axis) values for this curve</param>
            <param name="y">An array of double precision values that define
            the dependent (Y axis) values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="T:ZedGraph.Line"/> and <see cref="T:ZedGraph.Symbol"/> properties.
            </param>
        </member>
        <member name="M:ZedGraph.StickItem.#ctor(System.String,ZedGraph.IPointList,System.Drawing.Color)">
            <summary>
            Create a new <see cref="T:ZedGraph.StickItem"/> using the specified properties.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="T:ZedGraph.Line"/> and <see cref="T:ZedGraph.Symbol"/> properties.
            </param>
        </member>
        <member name="M:ZedGraph.StickItem.#ctor(System.String,ZedGraph.IPointList,System.Drawing.Color,System.Single)">
            <summary>
            Create a new <see cref="T:ZedGraph.StickItem"/> using the specified properties.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision value pairs that define
            the X and Y values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="T:ZedGraph.Line"/> and <see cref="T:ZedGraph.Symbol"/> properties.
            </param>
            <param name="lineWidth">The width (in points) to be used for the <see cref="T:ZedGraph.Line"/>.  This
            width is scaled based on <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>.  Use a value of zero to
            hide the line (see <see cref="P:ZedGraph.LineBase.IsVisible"/>).</param>
        </member>
        <member name="M:ZedGraph.StickItem.#ctor(ZedGraph.StickItem)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.StickItem"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.StickItem.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.StickItem.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.StickItem.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.StickItem.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.StickItem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="T:ZedGraph.GasGaugeRegion">
            <summary>
            A class representing a region on the GasGuage chart
            <see cref="T:ZedGraph.GasGaugeRegion"/>s.
            </summary>
            <author> Jay Mistry </author>
            <version> $Revision: 3.3 $ $Date: 2007/02/19 08:05:23 $ </version>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion._minValue">
            <summary>
            Defines the minimum value of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion._maxValue">
            <summary>
            Defines the maximum value of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion._color">
            <summary>
            Defines the Color of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion._startAngle">
            <summary>
            Internally calculated; Start angle of this pie that defines this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion._sweepAngle">
            <summary>
            Internally calculated; Sweep angle of this pie that defines this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion._fill">
            <summary>
            Private	field	that stores the	<see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.GasGaugeRegion"/>.	 Use the public property <see cref="P:ZedGraph.GasGaugeRegion.Fill"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion._labelDetail">
            <summary>
            A <see cref="T:ZedGraph.TextObj"/> which will customize the label display of this
            <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion._border">
            <summary>
            Private	field	that stores the	<see cref="P:ZedGraph.GasGaugeRegion.Border"/> class that defines	the
            properties of the	border around	this <see cref="T:ZedGraph.GasGaugeRegion"/>. Use the public
            property	<see cref="P:ZedGraph.GasGaugeRegion.Border"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion._boundingRectangle">
            <summary>
            The bounding rectangle for this <see cref="T:ZedGraph.GasGaugeRegion"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion._slicePath">
            <summary>
            Private field to hold the GraphicsPath of this <see cref="T:ZedGraph.GasGaugeRegion"/> to be
            used for 'hit testing'.
            </summary>
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.#ctor(System.String,System.Double,System.Double,System.Drawing.Color)">
            <summary>
            Create a new <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
            <param name="label">The value associated with this <see cref="T:ZedGraph.GasGaugeRegion"/> instance.</param>
            <param name="color">The display color for this <see cref="T:ZedGraph.GasGaugeRegion"/> instance.</param>
            <param name="minVal">The minimum value of this <see cref="T:ZedGraph.GasGuageNeedle"/>.</param>
            <param name="maxVal">The maximum value of this <see cref="T:ZedGraph.GasGuageNeedle"/>.</param>
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.#ctor(ZedGraph.GasGaugeRegion)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="ggr">The <see cref="T:ZedGraph.GasGaugeRegion"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.GasGaugeRegion.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.IsZIncluded(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the Z data range should be included in the axis scaling calculations.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the Z data are included, false otherwise</value>
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.IsXIndependent(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the X axis is the independent axis for this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the X axis is independent, false otherwise</value>
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.GasGaugeRegion"/> item to the specified
            <see cref="T:System.Drawing.Graphics"/> device. This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.CurveList"/>
            collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into. This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="pos">Not used for rendering GasGuageNeedle</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects. This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>	
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            Render the label for this <see cref="T:ZedGraph.GasGaugeRegion"/>.
            </summary>
            <param name="g">
            A graphic device object to be drawn into. This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A graphic device object to be drawn into. This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="rect">Bounding rectangle for this <see cref="T:ZedGraph.GasGaugeRegion"/>.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects. This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>		
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.GetCoords(ZedGraph.GraphPane,System.Int32,System.String@)">
            <summary>
            Determine the coords for the rectangle associated with a specified point for 
            this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> to which this curve belongs</param>
            <param name="i">The index of the point of interest</param>
            <param name="coords">A list of coordinates that represents the "rect" for
            this point (used in an html AREA tag)</param>
            <returns>true if it's a valid point, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.CalculateGasGuageParameters(ZedGraph.GraphPane)">
            <summary>
            Calculate the values needed to properly display this <see cref="T:ZedGraph.GasGaugeRegion"/>.
            </summary>
            <param name="pane">
            A graphic device object to be drawn into. This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
        </member>
        <member name="M:ZedGraph.GasGaugeRegion.CalcRectangle(System.Drawing.Graphics,ZedGraph.GraphPane,System.Single,System.Drawing.RectangleF)">
            <summary>
            Calculate the <see cref="T:System.Drawing.RectangleF"/> that will be used to define the bounding rectangle of
            the GasGuageNeedle.
            </summary>
            <remarks>This rectangle always lies inside of the <see cref="P:ZedGraph.Chart.Rect"/>, and it is
            normally a square so that the pie itself is not oval-shaped.</remarks>
            <param name="g">
            A graphic device object to be drawn into. This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects. This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>				
            <param name="chartRect">The <see cref="T:System.Drawing.RectangleF"/> (normally the <see cref="P:ZedGraph.Chart.Rect"/>)
            that bounds this pie.</param>
            <returns></returns>
        </member>
        <member name="P:ZedGraph.GasGaugeRegion.SlicePath">
            <summary>
            Gets or sets the SlicePath of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGaugeRegion.LabelDetail">
            <summary>
            Gets or sets the LabelDetail of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGaugeRegion.Border">
            <summary>
            Gets or sets the Border of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGaugeRegion.RegionColor">
            <summary>
            Gets or sets the RegionColor of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGaugeRegion.Fill">
            <summary>
            Gets or sets the Fill of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGaugeRegion.SweepAngle">
            <summary>
            Gets or sets the SweepAngle of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGaugeRegion.StartAngle">
            <summary>
            Gets or sets the StartAngle of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGaugeRegion.MinValue">
            <summary>
            Gets or sets the MinValue of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="P:ZedGraph.GasGaugeRegion.MaxValue">
            <summary>
            Gets or sets the MaxValue of this <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="T:ZedGraph.GasGaugeRegion.Default">
            <summary>
            Specify the default property values for the <see cref="T:ZedGraph.GasGaugeRegion"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion.Default.BorderWidth">
            <summary>
            The default border pen width for the <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion.Default.FillType">
            <summary>
            The default fill type for the <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion.Default.IsBorderVisible">
            <summary>
            The default value for the visibility of the <see cref="T:ZedGraph.GasGaugeRegion"/> border.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion.Default.BorderColor">
            <summary>
            The default value for the color of the <see cref="T:ZedGraph.GasGaugeRegion"/> border
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion.Default.FillColor">
            <summary>
            The default value for the color of the <see cref="T:ZedGraph.GasGaugeRegion"/> fill
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion.Default.FillBrush">
            <summary>
            The default value for the fill brush of the <see cref="T:ZedGraph.GasGaugeRegion"/>
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion.Default.isVisible">
            <summary>
            The default value for the visibility of the <see cref="T:ZedGraph.GasGaugeRegion"/> fill.
            </summary>
        </member>
        <member name="F:ZedGraph.GasGaugeRegion.Default.FontSize">
            <summary>
            The default value for the font size of the <see cref="T:ZedGraph.GasGaugeRegion"/> labels.
            </summary>
        </member>
        <member name="T:ZedGraph.YAxisList">
            <summary>
            A collection class containing a list of <see cref="T:ZedGraph.YAxis"/> objects.
            </summary>
            
            <author>John Champion</author>
            <version> $Revision: 3.3 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="M:ZedGraph.YAxisList.#ctor">
            <summary>
            Default constructor for the collection class.
            </summary>
        </member>
        <member name="M:ZedGraph.YAxisList.#ctor(ZedGraph.YAxisList)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.YAxisList"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.YAxisList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.YAxisList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.YAxisList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.YAxisList.IndexOf(System.String)">
            <summary>
            Return the zero-based position index of the
            <see cref="T:ZedGraph.Axis"/> with the specified <see cref="P:ZedGraph.Axis.Title"/>.
            </summary>
            <remarks>The comparison of titles is not case sensitive, but it must include
            all characters including punctuation, spaces, etc.</remarks>
            <param name="title">The <see cref="T:System.String"/> label that is in the
            <see cref="P:ZedGraph.Axis.Title"/> attribute of the item to be found.
            </param>
            <returns>The zero-based index of the specified <see cref="T:ZedGraph.Axis"/>,
            or -1 if the <see cref="P:ZedGraph.Axis.Title"/> was not found in the list</returns>
            <seealso cref="M:ZedGraph.YAxisList.IndexOfTag(System.String)"/>
        </member>
        <member name="M:ZedGraph.YAxisList.IndexOfTag(System.String)">
            <summary>
            Return the zero-based position index of the
            <see cref="T:ZedGraph.Axis"/> with the specified <see cref="F:ZedGraph.Axis.Tag"/>.
            </summary>
            <remarks>In order for this method to work, the <see cref="F:ZedGraph.Axis.Tag"/>
            property must be of type <see cref="T:System.String"/>.
            </remarks>
            <param name="tagStr">The <see cref="T:System.String"/> tag that is in the
            <see cref="F:ZedGraph.Axis.Tag"/> attribute of the item to be found.
            </param>
            <returns>The zero-based index of the specified <see cref="T:ZedGraph.Axis"/>,
            or -1 if the <see cref="F:ZedGraph.Axis.Tag"/> string is not in the list</returns>
        </member>
        <member name="M:ZedGraph.YAxisList.Add(System.String)">
            <summary>
            Create a new <see cref="T:ZedGraph.YAxis"/> and add it to this list.
            </summary>
            <param name="title">The title string for the new axis</param>
            <returns>An integer representing the ordinal position of the new <see cref="T:ZedGraph.YAxis"/> in
            this <see cref="T:ZedGraph.YAxisList"/>.  This is the value that you would set the
            <see cref="P:ZedGraph.CurveItem.YAxisIndex"/> property of a given <see cref="T:ZedGraph.CurveItem"/> to 
            assign it to this new <see cref="T:ZedGraph.YAxis"/>.</returns>
        </member>
        <member name="P:ZedGraph.YAxisList.Item(System.Int32)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.Axis"/> object by
            its ordinal position in the list.
            </summary>
            <param name="index">The ordinal position (zero-based) of the
            <see cref="T:ZedGraph.YAxis"/> object to be accessed.</param>
            <value>An <see cref="T:ZedGraph.Axis"/> object reference.</value>
        </member>
        <member name="P:ZedGraph.YAxisList.Item(System.String)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.Axis"/> object by
            its <see cref="P:ZedGraph.Axis.Title"/> string.
            </summary>
            <param name="title">The string title of the
            <see cref="T:ZedGraph.YAxis"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.Axis"/> object reference.</value>
        </member>
        <member name="T:ZedGraph.StockPointList">
            <summary>
            A collection class containing a list of <see cref="T:ZedGraph.StockPt"/> objects
            that define the set of points to be displayed on the curve.
            </summary>
            
            <author> John Champion based on code by Jerry Vos</author>
            <version> $Revision: 3.4 $ $Date: 2007/02/18 05:51:54 $ </version>
        </member>
        <member name="M:ZedGraph.StockPointList.#ctor">
            <summary>
            Default constructor for the collection class
            </summary>
        </member>
        <member name="M:ZedGraph.StockPointList.#ctor(ZedGraph.StockPointList)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The StockPointList from which to copy</param>
        </member>
        <member name="M:ZedGraph.StockPointList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.StockPointList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.StockPointList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.StockPointList.Add(ZedGraph.StockPt)">
            <summary>
            Add a <see cref="T:ZedGraph.StockPt"/> object to the collection at the end of the list.
            </summary>
            <param name="point">The <see cref="T:ZedGraph.StockPt"/> object to
            be added</param>
        </member>
        <member name="M:ZedGraph.StockPointList.Add(ZedGraph.PointPair)">
            <summary>
            Add a <see cref="T:ZedGraph.PointPair"/> object to the collection at the end of the list.
            </summary>
            <param name="point">The <see cref="T:ZedGraph.PointPair"/> object to be added</param>
        </member>
        <member name="M:ZedGraph.StockPointList.Add(System.Double,System.Double)">
            <summary>
            Add a <see cref="T:ZedGraph.StockPt"/> object to the collection at the end of the list using
            the specified values.  The unspecified values (low, open, close) are all set to
            <see cref="F:ZedGraph.PointPairBase.Missing"/>.
            </summary>
            <param name="date">An <see cref="T:ZedGraph.XDate"/> value</param>
            <param name="high">The high value for the day</param>
            <returns>The zero-based ordinal index where the point was added in the list.</returns>
        </member>
        <member name="M:ZedGraph.StockPointList.Add(System.Double,System.Double,System.Double,System.Double,System.Double,System.Double)">
            <summary>
            Add a single point to the <see cref="T:ZedGraph.PointPairList"/> from values of type double.
            </summary>
            <param name="date">An <see cref="T:ZedGraph.XDate"/> value</param>
            <param name="high">The high value for the day</param>
            <param name="low">The low value for the day</param>
            <param name="open">The opening value for the day</param>
            <param name="close">The closing value for the day</param>
            <param name="vol">The trading volume for the day</param>
            <returns>The zero-based ordinal index where the point was added in the list.</returns>
        </member>
        <member name="M:ZedGraph.StockPointList.GetAt(System.Int32)">
            <summary>
            Access the <see cref="T:ZedGraph.StockPt"/> at the specified ordinal index.
            </summary>
            <remarks>
            To be compatible with the <see cref="T:ZedGraph.IPointList"/> interface, the
            <see cref="T:ZedGraph.StockPointList"/> must implement an index that returns a
            <see cref="T:ZedGraph.PointPair"/> rather than a <see cref="T:ZedGraph.StockPt"/>.  This method
            will return the actual <see cref="T:ZedGraph.StockPt"/> at the specified position.
            </remarks>
            <param name="index">The ordinal position (zero-based) in the list</param>
            <returns>The specified <see cref="T:ZedGraph.StockPt"/>.
            </returns>
        </member>
        <member name="P:ZedGraph.StockPointList.Item(System.Int32)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.StockPt"/> object by
            its ordinal position in the list.
            </summary>
            <param name="index">The ordinal position (zero-based) of the
            <see cref="T:ZedGraph.StockPt"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.StockPt"/> object reference.</value>
        </member>
        <member name="T:ZedGraph.ScrollRange">
            <summary>
            A simple struct to store minimum and maximum <see cref="T:System.Double"/> type
            values for the scroll range
            </summary>
        </member>
        <member name="M:ZedGraph.ScrollRange.#ctor(System.Double,System.Double,System.Boolean)">
            <summary>
            Construct a <see cref="T:ZedGraph.ScrollRange"/> object given the specified data values.
            </summary>
            <param name="min">The minimum axis value limit for the scroll bar</param>
            <param name="max">The maximum axis value limit for the scroll bar</param>
            <param name="isScrollable">true to make this item scrollable, false otherwise</param>
        </member>
        <member name="M:ZedGraph.ScrollRange.#ctor(System.Boolean)">
            <summary>
            Sets the scroll range to default values of zero, and sets the <see cref="P:ZedGraph.ScrollRange.IsScrollable"/>
            property as specified.
            </summary>
            <param name="isScrollable">true to make this item scrollable, false otherwise</param>
        </member>
        <member name="M:ZedGraph.ScrollRange.#ctor(ZedGraph.ScrollRange)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.ScrollRange"/> object from which to copy</param>
        </member>
        <member name="P:ZedGraph.ScrollRange.IsScrollable">
            <summary>
            Gets or sets a property that determines if the <see cref="T:ZedGraph.Axis"/> corresponding to
            this <see cref="T:ZedGraph.ScrollRange"/> object can be scrolled.
            </summary>
        </member>
        <member name="P:ZedGraph.ScrollRange.Min">
            <summary>
            The minimum axis value limit for the scroll bar.
            </summary>
        </member>
        <member name="P:ZedGraph.ScrollRange.Max">
            <summary>
            The maximum axis value limit for the scroll bar.
            </summary>
        </member>
        <member name="T:ZedGraph.PointPairCV">
            <summary>
            A simple instance that stores a data point (X, Y, Z).  This differs from a regular
            <see cref="T:ZedGraph.PointPair"/> in that it maps the <see cref="P:ZedGraph.PointPairCV.ColorValue"/> property
            to an independent value.  That is, <see cref="P:ZedGraph.PointPairCV.ColorValue"/> and
            <see cref="F:ZedGraph.PointPair.Z"/> are not related (as they are in the
            <see cref="T:ZedGraph.PointPair"/>).
            </summary>
        </member>
        <member name="F:ZedGraph.PointPairCV.schema3">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.PointPairCV._colorValue">
            <summary>
            This is a user value that can be anything.  It is used to provide special 
            property-based coloration to the graph elements.
            </summary>
        </member>
        <member name="M:ZedGraph.PointPairCV.#ctor(System.Double,System.Double,System.Double)">
            <summary>
            Creates a point pair with the specified X, Y, and base value.
            </summary>
            <param name="x">This pair's x coordinate.</param>
            <param name="y">This pair's y coordinate.</param>
            <param name="z">This pair's z or lower dependent coordinate.</param>
        </member>
        <member name="M:ZedGraph.PointPairCV.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.PointPairCV.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="P:ZedGraph.PointPairCV.ColorValue">
            <summary>
            The ColorValue property.  This is used with the
            <see cref="F:ZedGraph.FillType.GradientByColorValue"/> option.
            </summary>
        </member>
        <member name="T:ZedGraph.JapaneseCandleStickItem">
            <summary>
            Encapsulates a Japanese CandleStick curve type that displays a vertical (or horizontal)
            line displaying the range of data values at each sample point, plus a filled bar
            signifying the opening and closing value for the sample.
            </summary>
            <remarks>For this type to work properly, your <see cref="T:ZedGraph.IPointList"/> must contain
            <see cref="T:ZedGraph.StockPt"/> objects, rather than ordinary <see cref="T:ZedGraph.PointPair"/> types.
            This is because the <see cref="T:ZedGraph.OHLCBarItem"/> type actually displays 5 data values
            but the <see cref="T:ZedGraph.PointPair"/> only stores 3 data values.  The <see cref="T:ZedGraph.StockPt"/>
            stores <see cref="P:ZedGraph.StockPt.Date"/>, <see cref="F:ZedGraph.StockPt.Close"/>,
            <see cref="F:ZedGraph.StockPt.Open"/>, <see cref="P:ZedGraph.StockPt.High"/>, and
            <see cref="P:ZedGraph.StockPt.Low"/> members.
            For a JapaneseCandleStick chart, the range between opening and closing values
            is drawn as a filled bar, with the filled color different
            (<see cref="P:ZedGraph.JapaneseCandleStick.RisingFill"/>) for the case of
            <see cref="F:ZedGraph.StockPt.Close"/>
            higher than <see cref="F:ZedGraph.StockPt.Open"/>, and
            <see cref="P:ZedGraph.JapaneseCandleStick.FallingFill"/>
            for the reverse.  The width of the bar is controlled
            by the <see cref="P:ZedGraph.OHLCBar.Size"/> property, which is specified in
            points (1/72nd inch), and scaled according to <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/>.
            The candlesticks are drawn horizontally or vertically depending on the
            value of <see cref="P:ZedGraph.BarSettings.Base"/>, which is a
            <see cref="T:ZedGraph.BarBase"/> enum type.</remarks>
            <author> John Champion </author>
            <version> $Revision: 3.4 $ $Date: 2007/01/30 08:02:12 $ </version>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStickItem.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.JapaneseCandleStickItem._stick">
            <summary>
            Private field that stores a reference to the <see cref="T:ZedGraph.OHLCBar"/>
            class defined for this <see cref="T:ZedGraph.OHLCBarItem"/>.  Use the public
            property <see cref="T:ZedGraph.OHLCBar"/> to access this value.
            </summary>
            
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.IsXIndependent(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the X axis is the independent axis for this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the X axis is independent, false otherwise</value>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.IsZIncluded(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the Z data range should be included in the axis scaling calculations.
            </summary>
            <remarks>
            IsZIncluded is true for <see cref="T:ZedGraph.JapaneseCandleStickItem"/> objects, since the Y and Z
            values are defined as the High and Low values for the day.</remarks>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the Z data are included, false otherwise</value>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.#ctor(System.String)">
            <summary>
            Create a new <see cref="T:ZedGraph.OHLCBarItem"/>, specifying only the legend label.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.#ctor(System.String,ZedGraph.IPointList)">
            <summary>
            Create a new <see cref="T:ZedGraph.JapaneseCandleStickItem"/> using the specified properties.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
            <param name="points">An <see cref="T:ZedGraph.IPointList"/> of double precision values that define
            the Date, Close, Open, High, and Low values for the curve.  Note that this
            <see cref="T:ZedGraph.IPointList"/> should contain <see cref="T:ZedGraph.StockPt"/> items rather
            than <see cref="T:ZedGraph.PointPair"/> items.
            </param>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.#ctor(ZedGraph.JapaneseCandleStickItem)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.JapaneseCandleStickItem"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.JapaneseCandleStickItem.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.OHLCBarItem"/> to the specified
            <see cref="T:System.Drawing.Graphics"/> device.  This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.CurveList"/>
            collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="pos">The ordinal position of the current <see cref="T:ZedGraph.OHLCBarItem"/>
            curve.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            Draw a legend key entry for this <see cref="T:ZedGraph.OHLCBarItem"/> at the specified location
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="rect">The <see cref="T:System.Drawing.RectangleF"/> struct that specifies the
            location for the legend key</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.JapaneseCandleStickItem.GetCoords(ZedGraph.GraphPane,System.Int32,System.String@)">
            <summary>
            Determine the coords for the rectangle associated with a specified point for 
            this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> to which this curve belongs</param>
            <param name="i">The index of the point of interest</param>
            <param name="coords">A list of coordinates that represents the "rect" for
            this point (used in an html AREA tag)</param>
            <returns>true if it's a valid point, false otherwise</returns>
        </member>
        <member name="P:ZedGraph.JapaneseCandleStickItem.Stick">
            <summary>
            Gets a reference to the <see cref="T:ZedGraph.JapaneseCandleStick"/> class defined
            for this <see cref="T:ZedGraph.JapaneseCandleStickItem"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.ZoomState">
            <summary>
            A class that captures all the scale range settings for a <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
            <remarks>
            This class is used to store scale ranges in order to allow zooming out to
            prior scale range states.  <see cref="T:ZedGraph.ZoomState"/> objects are maintained in the
            <see cref="T:ZedGraph.ZoomStateStack"/> collection.  The <see cref="T:ZedGraph.ZoomState"/> object holds
            a <see cref="T:ZedGraph.ScaleState"/> object for each of the three axes; the <see cref="T:ZedGraph.XAxis"/>,
            the <see cref="T:ZedGraph.YAxis"/>, and the <see cref="T:ZedGraph.Y2Axis"/>.
            </remarks>
            <author> John Champion </author>
            <version> $Revision: 3.14 $ $Date: 2007/02/19 08:05:24 $ </version>
        </member>
        <member name="F:ZedGraph.ZoomState._xAxis">
            <summary>
            <see cref="T:ZedGraph.ScaleState"/> objects to store the state data from the axes.
            </summary>
        </member>
        <member name="F:ZedGraph.ZoomState._type">
            <summary>
            An enum value indicating the type of adjustment being made to the
            scale range state.
            </summary>
        </member>
        <member name="M:ZedGraph.ZoomState.#ctor(ZedGraph.GraphPane,ZedGraph.ZoomState.StateType)">
            <summary>
            Construct a <see cref="T:ZedGraph.ZoomState"/> object from the scale ranges settings contained
            in the specified <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> from which to obtain the scale
            range values.
            </param>
            <param name="type">A <see cref="T:ZedGraph.ZoomState.StateType"/> enumeration that indicates whether
            this saved state is from a pan or zoom.</param>
        </member>
        <member name="M:ZedGraph.ZoomState.#ctor(ZedGraph.ZoomState)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.ZoomState"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.ZoomState.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.ZoomState.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.ZoomState.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.ZoomState.ApplyState(ZedGraph.GraphPane)">
            <summary>
            Copy the properties from this <see cref="T:ZedGraph.ZoomState"/> out to the specified <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> to which the scale range properties should be
            copied.</param>
        </member>
        <member name="M:ZedGraph.ZoomState.IsChanged(ZedGraph.GraphPane)">
            <summary>
            Determine if the state contained in this <see cref="T:ZedGraph.ZoomState"/> object is different from
            the state of the specified <see cref="T:ZedGraph.GraphPane"/>.
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> object with which to compare states.</param>
            <returns>true if the states are different, false otherwise</returns>
        </member>
        <member name="P:ZedGraph.ZoomState.Type">
            <summary>
            Gets a <see cref="T:ZedGraph.ZoomState.StateType"/> value indicating the type of action (zoom or pan)
            saved by this <see cref="T:ZedGraph.ZoomState"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.ZoomState.TypeString">
            <summary>
            Gets a string representing the type of adjustment that was made when this scale
            state was saved.
            </summary>
            <value>A string representation for the state change type; typically
            "Pan", "Zoom", or "Scroll".</value>
        </member>
        <member name="T:ZedGraph.ZoomState.StateType">
            <summary>
            An enumeration that describes whether a given state is the result of a Pan or Zoom
            operation.
            </summary>
        </member>
        <member name="F:ZedGraph.ZoomState.StateType.Zoom">
            <summary>
            Indicates the <see cref="T:ZedGraph.ZoomState"/> object is from a Zoom operation
            </summary>
        </member>
        <member name="F:ZedGraph.ZoomState.StateType.WheelZoom">
            <summary>
            Indicates the <see cref="T:ZedGraph.ZoomState"/> object is from a Wheel Zoom operation
            </summary>
        </member>
        <member name="F:ZedGraph.ZoomState.StateType.Pan">
            <summary>
            Indicates the <see cref="T:ZedGraph.ZoomState"/> object is from a Pan operation
            </summary>
        </member>
        <member name="F:ZedGraph.ZoomState.StateType.Scroll">
            <summary>
            Indicates the <see cref="T:ZedGraph.ZoomState"/> object is from a Scroll operation
            </summary>
        </member>
        <member name="T:ZedGraph.Selection">
            <summary>
            </summary>
            <remarks>
            </remarks>
            
            <author> John Champion and JCarpenter </author>
            <version> $Revision: 3.5 $ $Date: 2007/03/11 02:08:16 $ </version>
        </member>
        <member name="F:ZedGraph.Selection.Border">
            <summary>
            The <see cref="F:ZedGraph.Selection.Border"/> type to be used for drawing "selected"
            <see cref="T:ZedGraph.PieItem"/>, <see cref="T:ZedGraph.BarItem"/>, <see cref="T:ZedGraph.HiLowBarItem"/>,
            <see cref="T:ZedGraph.OHLCBarItem"/>, and <see cref="T:ZedGraph.JapaneseCandleStickItem"/> item types.
            </summary>
        </member>
        <member name="F:ZedGraph.Selection.Fill">
            <summary>
            The <see cref="F:ZedGraph.Selection.Fill"/> type to be used for drawing "selected"
            <see cref="T:ZedGraph.PieItem"/>, <see cref="T:ZedGraph.BarItem"/>, <see cref="T:ZedGraph.HiLowBarItem"/>,
            and <see cref="T:ZedGraph.JapaneseCandleStickItem"/> item types.
            </summary>
        </member>
        <member name="F:ZedGraph.Selection.Line">
            <summary>
            The <see cref="F:ZedGraph.Selection.Line"/> type to be used for drawing "selected"
            <see cref="T:ZedGraph.LineItem"/> and <see cref="T:ZedGraph.StickItem"/> types
            </summary>
        </member>
        <member name="F:ZedGraph.Selection.Symbol">
            <summary>
            The <see cref="F:ZedGraph.Selection.Symbol"/> type to be used for drawing "selected"
            <see cref="T:ZedGraph.LineItem"/> and <see cref="T:ZedGraph.ErrorBarItem"/> types.
            </summary>
        </member>
        <member name="M:ZedGraph.Selection.Select(ZedGraph.MasterPane,ZedGraph.CurveItem)">
            <summary>
            Place a <see cref="T:ZedGraph.CurveItem"/> in the selection list, removing all other
            items.
            </summary>
            <param name="master">The <see cref="T:ZedGraph.MasterPane"/> that is the "owner"
            of the <see cref="T:ZedGraph.CurveItem"/>'s.</param>
            <param name="ci">The <see cref="T:ZedGraph.CurveItem"/> to be added to the list.</param>
        </member>
        <member name="M:ZedGraph.Selection.Select(ZedGraph.MasterPane,ZedGraph.CurveList)">
            <summary>
            Place a list of <see cref="T:ZedGraph.CurveItem"/>'s in the selection list, removing all other
            items.
            </summary>
            <param name="master">The <see cref="T:ZedGraph.MasterPane"/> that is the "owner"
            of the <see cref="T:ZedGraph.CurveItem"/>'s.</param>
            <param name="ciList">The list of <see cref="T:ZedGraph.CurveItem"/> to be added to the list.</param>
        </member>
        <member name="M:ZedGraph.Selection.AddToSelection(ZedGraph.MasterPane,ZedGraph.CurveItem)">
            <summary>
            Add a <see cref="T:ZedGraph.CurveItem"/> to the selection list.
            </summary>
            <param name="master">The <see cref="T:ZedGraph.MasterPane"/> that is the "owner"
            of the <see cref="T:ZedGraph.CurveItem"/>'s.</param>
            <param name="ci">The <see cref="T:ZedGraph.CurveItem"/> to be added to the list.</param>
        </member>
        <member name="M:ZedGraph.Selection.AddToSelection(ZedGraph.MasterPane,ZedGraph.CurveList)">
            <summary>
            Add a list of <see cref="T:ZedGraph.CurveItem"/>'s to the selection list.
            </summary>
            <param name="master">The <see cref="T:ZedGraph.MasterPane"/> that is the "owner"
            of the <see cref="T:ZedGraph.CurveItem"/>'s.</param>
            <param name="ciList">The list of <see cref="T:ZedGraph.CurveItem"/>'s to be added to the list.</param>
        </member>
        <member name="M:ZedGraph.Selection.RemoveFromSelection(ZedGraph.MasterPane,ZedGraph.CurveItem)">
            <summary>
            Remove the specified <see cref="T:ZedGraph.CurveItem"/> from the selection list.
            </summary>
            <param name="master">The <see cref="T:ZedGraph.MasterPane"/> that is the "owner"
            of the <see cref="T:ZedGraph.CurveItem"/>'s.</param>
            <param name="ci">The <see cref="T:ZedGraph.CurveItem"/> to be removed from the list.</param>
        </member>
        <member name="M:ZedGraph.Selection.ClearSelection(ZedGraph.MasterPane)">
            <summary>
            Clear the selection list and trigger a <see cref="E:ZedGraph.Selection.SelectionChangedEvent"/>.
            </summary>
            <param name="master">The <see cref="T:ZedGraph.MasterPane"/> that "owns" the selection list.</param>
        </member>
        <member name="M:ZedGraph.Selection.ClearSelection(ZedGraph.MasterPane,System.Boolean)">
            <summary>
            Clear the selection list and optionally trigger a <see cref="E:ZedGraph.Selection.SelectionChangedEvent"/>.
            </summary>
            <param name="master">The <see cref="T:ZedGraph.MasterPane"/> that "owns" the selection list.</param>
            <param name="sendEvent">true to trigger a <see cref="E:ZedGraph.Selection.SelectionChangedEvent"/>,
            false otherwise.</param>
        </member>
        <member name="M:ZedGraph.Selection.UpdateSelection(ZedGraph.MasterPane)">
            <summary>
            Mark the <see cref="T:ZedGraph.CurveItem"/>'s that are included in the selection list
            by setting the <see cref="P:ZedGraph.CurveItem.IsSelected"/> property to true.
            </summary>
            <param name="master">The <see cref="T:ZedGraph.MasterPane"/> that "owns" the selection list.</param>
        </member>
        <member name="E:ZedGraph.Selection.SelectionChangedEvent">
            <summary>
            Subscribe to this event to receive notice 
            that the list of selected CurveItems has changed
            </summary>
        </member>
        <member name="T:ZedGraph.PaneList">
            <summary>
            A collection class containing a list of <see cref="T:ZedGraph.GraphPane"/> objects.
            </summary>
            
            <author>John Champion</author>
            <version> $Revision: 3.6 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="F:ZedGraph.PaneList.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.PaneList.#ctor">
            <summary>
            Default constructor for the collection class.
            </summary>
        </member>
        <member name="M:ZedGraph.PaneList.#ctor(ZedGraph.PaneList)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.PaneList"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.PaneList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.PaneList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.PaneList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.PaneList.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.PaneList.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.PaneList.IndexOf(System.String)">
            <summary>
            Return the zero-based position index of the
            <see cref="T:ZedGraph.GraphPane"/> with the specified <see cref="P:ZedGraph.PaneBase.Title"/>.
            </summary>
            <remarks>The comparison of titles is not case sensitive, but it must include
            all characters including punctuation, spaces, etc.</remarks>
            <param name="title">The <see cref="T:System.String"/> label that is in the
            <see cref="P:ZedGraph.PaneBase.Title"/> attribute of the item to be found.
            </param>
            <returns>The zero-based index of the specified <see cref="T:ZedGraph.GraphPane"/>,
            or -1 if the <see cref="P:ZedGraph.PaneBase.Title"/> was not found in the list</returns>
            <seealso cref="M:ZedGraph.PaneList.IndexOfTag(System.String)"/>
        </member>
        <member name="M:ZedGraph.PaneList.IndexOfTag(System.String)">
            <summary>
            Return the zero-based position index of the
            <see cref="T:ZedGraph.GraphPane"/> with the specified <see cref="P:ZedGraph.PaneBase.Tag"/>.
            </summary>
            <remarks>In order for this method to work, the <see cref="P:ZedGraph.PaneBase.Tag"/>
            property must be of type <see cref="T:System.String"/>.</remarks>
            <param name="tagStr">The <see cref="T:System.String"/> tag that is in the
            <see cref="P:ZedGraph.PaneBase.Tag"/> attribute of the item to be found.
            </param>
            <returns>The zero-based index of the specified <see cref="T:ZedGraph.GraphPane"/>,
            or -1 if the <see cref="P:ZedGraph.PaneBase.Tag"/> string is not in the list</returns>
        </member>
        <member name="P:ZedGraph.PaneList.Item(System.String)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.GraphPane"/> object by
            its <see cref="P:ZedGraph.PaneBase.Title"/> string.
            </summary>
            <param name="title">The string title of the
            <see cref="T:ZedGraph.GraphPane"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.GraphPane"/> object reference.</value>
        </member>
        <member name="T:ZedGraph.Legend">
            <summary>
            This class encapsulates the chart <see cref="T:ZedGraph.Legend"/> that is displayed
            in the <see cref="T:ZedGraph.GraphPane"/>
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.38 $ $Date: 2007/03/11 02:08:16 $ </version>
        </member>
        <member name="F:ZedGraph.Legend.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._rect">
            <summary> Private field to hold the bounding rectangle around the legend.
            This bounding rectangle varies with the number of legend entries, font sizes,
            etc., and is re-calculated by <see cref="M:ZedGraph.Legend.CalcRect(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single,System.Drawing.RectangleF@)"/> at each redraw.
            Use the public readonly property <see cref="P:ZedGraph.Legend.Rect"/> to access this
            rectangle.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._position">
            <summary>Private field to hold the legend location setting.  This field
            contains the <see cref="T:ZedGraph.LegendPos"/> enum type to specify the area of
            the graph where the legend will be positioned.  Use the public property
            <see cref="T:ZedGraph.LegendPos"/> to access this value.
            </summary>
            <seealso cref="F:ZedGraph.Legend.Default.Position"/>
        </member>
        <member name="F:ZedGraph.Legend._isHStack">
            <summary>
            Private field to enable/disable horizontal stacking of the legend entries.
            If this value is false, then the legend entries will always be a single column.
            Use the public property <see cref="P:ZedGraph.Legend.IsHStack"/> to access this value.
            </summary>
            <seealso cref="F:ZedGraph.Legend.Default.IsHStack"/>
        </member>
        <member name="F:ZedGraph.Legend._isVisible">
            <summary>
            Private field to enable/disable drawing of the entire legend.
            If this value is false, then the legend will not be drawn.
            Use the public property <see cref="P:ZedGraph.Legend.IsVisible"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._fill">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.Legend"/>.  Use the public property <see cref="P:ZedGraph.Legend.Fill"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._border">
            <summary>
            Private field that stores the <see cref="T:ZedGraph.Border"/> data for this
            <see cref="T:ZedGraph.Legend"/>.  Use the public property <see cref="P:ZedGraph.Legend.Border"/> to
            access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._fontSpec">
            <summary>
            Private field to maintain the <see cref="P:ZedGraph.Legend.FontSpec"/> class that
            maintains font attributes for the entries in this legend.  Use
            the <see cref="P:ZedGraph.Legend.FontSpec"/> property to access this class.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._location">
            <summary>
            Private field to maintain the <see cref="T:ZedGraph.Legend"/> location.  This object
            is only applicable if the <see cref="P:ZedGraph.Legend.Position"/> property is set to
            <see cref="F:ZedGraph.LegendPos.Float"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._hStack">
            <summary>
            Private temporary field to maintain the number of columns (horizontal stacking) to be used
            for drawing the <see cref="T:ZedGraph.Legend"/>.  This value is only valid during a draw operation.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._legendItemWidth">
            <summary>
            Private temporary field to maintain the width of each column in the
            <see cref="T:ZedGraph.Legend"/>.  This value is only valid during a draw operation.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._legendItemHeight">
            <summary>
            Private temporary field to maintain the height of each row in the
            <see cref="T:ZedGraph.Legend"/>.  This value is only valid during a draw operation.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._gap">
            <summary>
            Private field to store the gap between the legend and the chart rectangle.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._isReverse">
            <summary>
            Private field to select output order of legend entries.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend._tmpSize">
            <summary>
            Private temporary field to maintain the characteristic "gap" for the legend.
            This is normal the height of the largest font in the legend.
            This value is only valid during a draw operation.
            </summary>
        </member>
        <member name="M:ZedGraph.Legend.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.Legend"/> properties to default
            values as defined in the <see cref="T:ZedGraph.Legend.Default"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.Legend.#ctor(ZedGraph.Legend)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The XAxis object from which to copy</param>
        </member>
        <member name="M:ZedGraph.Legend.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Legend.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Legend.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Legend.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Legend.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.Legend.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single)">
            <summary>
            Render the <see cref="T:ZedGraph.Legend"/> to the specified <see cref="T:System.Drawing.Graphics"/> device.
            </summary>
            <remarks>
            This method is normally only called by the Draw method
            of the parent <see cref="T:ZedGraph.GraphPane"/> object.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.Legend.FindPoint(System.Drawing.PointF,ZedGraph.PaneBase,System.Single,System.Int32@)">
            <summary>
            Determine if a mouse point is within the legend, and if so, which legend
            entry (<see cref="T:ZedGraph.CurveItem"/>) is nearest.
            </summary>
            <param name="mousePt">The screen point, in pixel coordinates.</param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="index">The index number of the <see cref="T:ZedGraph.CurveItem"/> legend
            entry that is under the mouse point.  The <see cref="T:ZedGraph.CurveItem"/> object is
            accessible via <see cref="P:ZedGraph.GraphPane.CurveList">CurveList[index]</see>.
            </param>
            <returns>true if the mouse point is within the <see cref="T:ZedGraph.Legend"/> bounding
            box, false otherwise.</returns>
            <seealso cref="M:ZedGraph.GraphPane.FindNearestObject(System.Drawing.PointF,System.Drawing.Graphics,System.Object@,System.Int32@)"/>
        </member>
        <member name="M:ZedGraph.Legend.CalcRect(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single,System.Drawing.RectangleF@)">
            <summary>
            Calculate the <see cref="T:ZedGraph.Legend"/> rectangle (<see cref="P:ZedGraph.Legend.Rect"/>),
            taking into account the number of required legend
            entries, and the legend drawing preferences.
            </summary>
            <remarks>Adjust the size of the
            <see cref="P:ZedGraph.Chart.Rect"/> for the parent <see cref="T:ZedGraph.GraphPane"/> to accomodate the
            space required by the legend.
            </remarks>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <param name="tChartRect">
            The rectangle that contains the area bounded by the axes, in pixel units.
            <seealso cref="P:ZedGraph.Chart.Rect"/>
            </param>
        </member>
        <member name="P:ZedGraph.Legend.Rect">
            <summary>
            Get the bounding rectangle for the <see cref="T:ZedGraph.Legend"/> in screen coordinates
            </summary>
            <value>A screen rectangle in pixel units</value>
        </member>
        <member name="P:ZedGraph.Legend.FontSpec">
            <summary>
            Access to the <see cref="T:ZedGraph.FontSpec"/> class used to render
            the <see cref="T:ZedGraph.Legend"/> entries
            </summary>
            <value>A reference to a <see cref="T:ZedGraph.Legend"/> object</value>
            <seealso cref="F:ZedGraph.Legend.Default.FontColor"/>
            <seealso cref="F:ZedGraph.Legend.Default.FontBold"/>
            <seealso cref="F:ZedGraph.Legend.Default.FontItalic"/>
            <seealso cref="F:ZedGraph.Legend.Default.FontUnderline"/>
            <seealso cref="F:ZedGraph.Legend.Default.FontFamily"/>
            <seealso cref="F:ZedGraph.Legend.Default.FontSize"/>
        </member>
        <member name="P:ZedGraph.Legend.IsVisible">
            <summary>
            Gets or sets a property that shows or hides the <see cref="T:ZedGraph.Legend"/> entirely
            </summary>
            <value> true to show the <see cref="T:ZedGraph.Legend"/>, false to hide it </value>
            <seealso cref="F:ZedGraph.Legend.Default.IsVisible"/>
        </member>
        <member name="P:ZedGraph.Legend.Border">
            <summary>
            The <see cref="P:ZedGraph.Legend.Border"/> class used to draw the border border around this <see cref="T:ZedGraph.Legend"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.Legend.Fill">
            <summary>
            Gets or sets the <see cref="T:ZedGraph.Fill"/> data for this
            <see cref="T:ZedGraph.Legend"/> background.
            </summary>
        </member>
        <member name="P:ZedGraph.Legend.IsHStack">
            <summary>
            Sets or gets a property that allows the <see cref="T:ZedGraph.Legend"/> items to
            stack horizontally in addition to the vertical stacking
            </summary>
            <value>true to allow horizontal stacking, false otherwise
            </value>
            <seealso cref="F:ZedGraph.Legend.Default.IsHStack"/>
        </member>
        <member name="P:ZedGraph.Legend.Position">
            <summary>
            Sets or gets the location of the <see cref="T:ZedGraph.Legend"/> on the
            <see cref="T:ZedGraph.GraphPane"/> using the <see cref="T:ZedGraph.LegendPos"/> enum type
            </summary>
            <seealso cref="F:ZedGraph.Legend.Default.Position"/>
        </member>
        <member name="P:ZedGraph.Legend.Location">
            <summary>
            Gets or sets the <see cref="P:ZedGraph.Legend.Location"/> data for the <see cref="T:ZedGraph.Legend"/>.
            This property is only applicable if <see cref="P:ZedGraph.Legend.Position"/> is set
            to <see cref="F:ZedGraph.LegendPos.Float"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.Legend.Gap">
            <summary>
            Gets or sets the gap size between the legend and the <see cref="P:ZedGraph.Chart.Rect"/>.
            </summary>
            <remarks>
            This is expressed as a fraction of the largest scaled character height for any
            of the fonts used in the legend.  Each <see cref="T:ZedGraph.CurveItem"/> in the legend can
            optionally have its own <see cref="P:ZedGraph.Legend.FontSpec"/> specification.
            </remarks>
        </member>
        <member name="P:ZedGraph.Legend.IsReverse">
            <summary>
            Gets or sets a value that determines if the legend entries are displayed in normal order
            (matching the order in the <see cref="T:ZedGraph.CurveList"/>, or in reverse order.
            </summary>
        </member>
        <member name="T:ZedGraph.Legend.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.Legend"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.BorderWidth">
            <summary>
            The default pen width for the <see cref="T:ZedGraph.Legend"/> border border.
            (<see cref="P:ZedGraph.LineBase.Width"/> property).  Units are in pixels.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.BorderColor">
            <summary>
            The default color for the <see cref="T:ZedGraph.Legend"/> border border.
            (<see cref="P:ZedGraph.LineBase.Color"/> property). 
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FillColor">
            <summary>
            The default color for the <see cref="T:ZedGraph.Legend"/> background.
            (<see cref="P:ZedGraph.Fill.Color"/> property).  Use of this
            color depends on the status of the <see cref="P:ZedGraph.Fill.Type"/>
            property.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FillBrush">
            <summary>
            The default custom brush for filling in this <see cref="T:ZedGraph.Legend"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FillType">
            <summary>
            The default fill mode for the <see cref="T:ZedGraph.Legend"/> background.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.Position">
            <summary>
            The default location for the <see cref="T:ZedGraph.Legend"/> on the graph
            (<see cref="P:ZedGraph.Legend.Location"/> property).  This property is
            defined as a <see cref="T:ZedGraph.LegendPos"/> enumeration.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.IsBorderVisible">
            <summary>
            The default border mode for the <see cref="T:ZedGraph.Legend"/>.
            (<see cref="P:ZedGraph.LineBase.IsVisible"/> property). true
            to draw a border around the <see cref="P:ZedGraph.Legend.Rect"/>,
            false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.IsVisible">
            <summary>
            The default display mode for the <see cref="T:ZedGraph.Legend"/>.
            (<see cref="P:ZedGraph.Legend.IsVisible"/> property). true
            to show the legend,
            false to hide it.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.IsFilled">
            <summary>
            The default fill mode for the <see cref="T:ZedGraph.Legend"/> background
            (<see cref="P:ZedGraph.Fill.Type"/> property).
            true to fill-in the background with color,
            false to leave the background transparent.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.IsHStack">
            <summary>
            The default horizontal stacking mode for the <see cref="T:ZedGraph.Legend"/>
            (<see cref="P:ZedGraph.Legend.IsHStack"/> property).
            true to allow horizontal legend item stacking, false to allow
            only vertical legend orientation.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FontFamily">
            <summary>
            The default font family for the <see cref="T:ZedGraph.Legend"/> entries
            (<see cref="P:ZedGraph.FontSpec.Family"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FontSize">
            <summary>
            The default font size for the <see cref="T:ZedGraph.Legend"/> entries
            (<see cref="P:ZedGraph.FontSpec.Size"/> property).  Units are
            in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FontColor">
            <summary>
            The default font color for the <see cref="T:ZedGraph.Legend"/> entries
            (<see cref="P:ZedGraph.FontSpec.FontColor"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FontBold">
            <summary>
            The default font bold mode for the <see cref="T:ZedGraph.Legend"/> entries
            (<see cref="P:ZedGraph.FontSpec.IsBold"/> property). true
            for a bold typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FontItalic">
            <summary>
            The default font italic mode for the <see cref="T:ZedGraph.Legend"/> entries
            (<see cref="P:ZedGraph.FontSpec.IsItalic"/> property). true
            for an italic typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FontUnderline">
            <summary>
            The default font underline mode for the <see cref="T:ZedGraph.Legend"/> entries
            (<see cref="P:ZedGraph.FontSpec.IsUnderline"/> property). true
            for an underlined typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FontFillColor">
            <summary>
            The default color for filling in the scale text background
            (see <see cref="P:ZedGraph.Fill.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FontFillBrush">
            <summary>
            The default custom brush for filling in the scale text background
            (see <see cref="P:ZedGraph.Fill.Brush"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.FontFillType">
            <summary>
            The default fill mode for filling in the scale text background
            (see <see cref="P:ZedGraph.Fill.Type"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.Gap">
            <summary>
            The default gap size between the legend and the <see cref="P:ZedGraph.Chart.Rect"/>.
            This is the default value of <see cref="P:ZedGraph.Legend.Gap"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.Legend.Default.IsReverse">
            <summary>
            Default value for the <see cref="P:ZedGraph.Legend.IsReverse"/> property.
            </summary>
        </member>
        <member name="T:ZedGraph.Fill">
            <summary>
            A class that encapsulates color-fill properties for an object.  The <see cref="T:ZedGraph.Fill"/> class
            is used in <see cref="P:ZedGraph.PaneBase.Rect"/>, <see cref="P:ZedGraph.Chart.Rect"/>, <see cref="T:ZedGraph.Legend"/>,
            <see cref="T:ZedGraph.Bar"/>, and <see cref="T:ZedGraph.Line"/> objects.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.22 $ $Date: 2007/01/26 09:01:49 $ </version>
        </member>
        <member name="F:ZedGraph.Fill.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.Fill._color">
            <summary>
            Private field that stores the fill color.  Use the public
            property <see cref="P:ZedGraph.Fill.Color"/> to access this value.  This property is
            only applicable if the <see cref="P:ZedGraph.Fill.Type"/> is not <see cref="F:ZedGraph.FillType.None"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill._secondaryValueGradientColor">
            <summary>
            Private field that stores the secondary color for gradientByValue fills.  Use the public
            property <see cref="P:ZedGraph.Fill.SecondaryValueGradientColor"/> to access this value.  This property is
            only applicable if the <see cref="P:ZedGraph.Fill.Type"/> is <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/>, or <see cref="F:ZedGraph.FillType.GradientByZ"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill._brush">
            <summary>
            Private field that stores the custom fill brush.  Use the public
            property <see cref="P:ZedGraph.Fill.Brush"/> to access this value.  This property is
            only applicable if the 
            <see cref="P:ZedGraph.Fill.Type"/> property is set to <see cref="F:ZedGraph.FillType.Brush"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill._type">
            <summary>
            Private field that determines the type of color fill.  Use the public
            property <see cref="P:ZedGraph.Fill.Type"/> to access this value.  The fill color
            is determined by the property <see cref="P:ZedGraph.Fill.Color"/> or
            <see cref="P:ZedGraph.Fill.Brush"/>.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill._isScaled">
            <summary>
            Private field that determines if the brush will be scaled to the bounding box
            of the filled object.  If this value is false, then the brush will only be aligned
            with the filled object based on the <see cref="P:ZedGraph.Fill.AlignH"/> and <see cref="P:ZedGraph.Fill.AlignV"/>
            properties.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill._alignH">
            <summary>
            Private field that determines how the brush will be aligned with the filled object
            in the horizontal direction.  This value is a <see cref="T:ZedGraph.AlignH"/> enumeration.
            This field only applies if <see cref="P:ZedGraph.Fill.IsScaled"/> is false.
            properties.
            </summary>
            <seealso cref="P:ZedGraph.Fill.AlignH"/>
            <seealso cref="P:ZedGraph.Fill.AlignV"/>
        </member>
        <member name="F:ZedGraph.Fill._alignV">
            <summary>
            Private field that determines how the brush will be aligned with the filled object
            in the vertical direction.  This value is a <see cref="T:ZedGraph.AlignV"/> enumeration.
            This field only applies if <see cref="P:ZedGraph.Fill.IsScaled"/> is false.
            properties.
            </summary>
            <seealso cref="P:ZedGraph.Fill.AlignH"/>
            <seealso cref="P:ZedGraph.Fill.AlignV"/>
        </member>
        <member name="F:ZedGraph.Fill._image">
            <summary>
            Private field that saves the image passed to the constructor.
            This is used strictly for serialization.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill._wrapMode">
            <summary>
            Private field that saves the image wrapmode passed to the constructor.
            This is used strictly for serialization.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill._colorList">
            <summary>
            Private field that saves the list of colors used to create the
            <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/> in the constructor.  This is used strictly
            for serialization.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill._positionList">
            <summary>
            Private field that saves the list of positions used to create the
            <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/> in the constructor.  This is used strictly
            for serialization.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill._angle">
            <summary>
            Private field the saves the angle of the fill.  This is used strictly for serialization.
            </summary>
        </member>
        <member name="M:ZedGraph.Fill.Init">
            <summary>
            Generic initializer to default values
            </summary>
        </member>
        <member name="M:ZedGraph.Fill.#ctor">
            <summary>
            The default constructor.  Initialized to no fill.
            </summary>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Color,System.Drawing.Brush,ZedGraph.FillType)">
            <summary>
            Constructor that specifies the color, brush, and type for this fill.
            </summary>
            <param name="color">The color of the fill for solid fills</param>
            <param name="brush">A custom brush for fills.  Can be a <see cref="T:System.Drawing.SolidBrush"/>,
            <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/>, or <see cref="T:System.Drawing.TextureBrush"/>.</param>
            <param name="type">The <see cref="T:ZedGraph.FillType"/> for this fill.</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Color)">
            <summary>
            Constructor that creates a solid color-fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Solid"/>, and setting <see cref="P:ZedGraph.Fill.Color"/> to the
            specified color value.
            </summary>
            <param name="color">The color of the solid fill</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Color,System.Drawing.Color,System.Single)">
            <summary>
            Constructor that creates a linear gradient color-fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/> using the specified colors and angle.
            </summary>
            <param name="color1">The first color for the gradient fill</param>
            <param name="color2">The second color for the gradient fill</param>
            <param name="angle">The angle (degrees) of the gradient fill</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Color,System.Drawing.Color)">
            <summary>
            Constructor that creates a linear gradient color-fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/> using the specified colors.
            </summary>
            <param name="color1">The first color for the gradient fill</param>
            <param name="color2">The second color for the gradient fill</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color)">
            <summary>
            Constructor that creates a linear gradient color-fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/> using the specified colors.  This gradient fill
            consists of three colors.
            </summary>
            <param name="color1">The first color for the gradient fill</param>
            <param name="color2">The second color for the gradient fill</param>
            <param name="color3">The third color for the gradient fill</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Color,System.Drawing.Color,System.Drawing.Color,System.Single)">
            <summary>
            Constructor that creates a linear gradient color-fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/> using the specified colors.  This gradient fill
            consists of three colors
            </summary>
            <param name="color1">The first color for the gradient fill</param>
            <param name="color2">The second color for the gradient fill</param>
            <param name="color3">The third color for the gradient fill</param>
            <param name="angle">The angle (degrees) of the gradient fill</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Drawing2D.ColorBlend)">
            <summary>
            Constructor that creates a linear gradient multi-color-fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/> using the specified colors.  This gradient fill
            consists of many colors based on a <see cref="T:System.Drawing.Drawing2D.ColorBlend"/> object.  The gradient
            angle is defaulted to zero.
            </summary>
            <param name="blend">The <see cref="T:System.Drawing.Drawing2D.ColorBlend"/> object that defines the colors
            and positions along the gradient.</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Drawing2D.ColorBlend,System.Single)">
            <summary>
            Constructor that creates a linear gradient multi-color-fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/> using the specified colors.  This gradient fill
            consists of many colors based on a <see cref="T:System.Drawing.Drawing2D.ColorBlend"/> object, drawn at the
            specified angle (degrees).
            </summary>
            <param name="blend">The <see cref="T:System.Drawing.Drawing2D.ColorBlend"/> object that defines the colors
            and positions along the gradient.</param>
            <param name="angle">The angle (degrees) of the gradient fill</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Color[])">
            <summary>
            Constructor that creates a linear gradient multi-color-fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/> using the specified colors.  This gradient fill
            consists of many colors based on an array of <see cref="P:ZedGraph.Fill.Color"/> objects, drawn at an
            angle of zero (degrees).  The <see paramref="colors"/> array is used to create
            a <see cref="T:System.Drawing.Drawing2D.ColorBlend"/> object assuming a even linear distribution of the colors
            across the gradient.
            </summary>
            <param name="colors">The array of <see cref="P:ZedGraph.Fill.Color"/> objects that defines the colors
            along the gradient.</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Color[],System.Single)">
            <summary>
            Constructor that creates a linear gradient multi-color-fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/> using the specified colors.  This gradient fill
            consists of many colors based on an array of <see cref="P:ZedGraph.Fill.Color"/> objects, drawn at the
            specified angle (degrees).  The <see paramref="colors"/> array is used to create
            a <see cref="T:System.Drawing.Drawing2D.ColorBlend"/> object assuming a even linear distribution of the colors
            across the gradient.
            </summary>
            <param name="colors">The array of <see cref="P:ZedGraph.Fill.Color"/> objects that defines the colors
            along the gradient.</param>
            <param name="angle">The angle (degrees) of the gradient fill</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Color[],System.Single[])">
            <summary>
            Constructor that creates a linear gradient multi-color-fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/> using the specified colors.  This gradient fill
            consists of many colors based on an array of <see cref="P:ZedGraph.Fill.Color"/> objects, drawn at the
            an angle of zero (degrees).  The <see paramref="colors"/> array is used to create
            a <see cref="T:System.Drawing.Drawing2D.ColorBlend"/> object assuming a even linear distribution of the colors
            across the gradient.
            </summary>
            <param name="colors">The array of <see cref="P:ZedGraph.Fill.Color"/> objects that defines the colors
            along the gradient.</param>
            <param name="positions">The array of floating point values that defines the color
            positions along the gradient.  Values should range from 0 to 1.</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Color[],System.Single[],System.Single)">
            <summary>
            Constructor that creates a linear gradient multi-color-fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/> using the specified colors.  This gradient fill
            consists of many colors based on an array of <see cref="P:ZedGraph.Fill.Color"/> objects, drawn at the
            specified angle (degrees).  The <see paramref="colors"/> array is used to create
            a <see cref="T:System.Drawing.Drawing2D.ColorBlend"/> object assuming a even linear distribution of the colors
            across the gradient.
            </summary>
            <param name="colors">The array of <see cref="P:ZedGraph.Fill.Color"/> objects that defines the colors
            along the gradient.</param>
            <param name="positions">The array of floating point values that defines the color
            positions along the gradient.  Values should range from 0 to 1.</param>
            <param name="angle">The angle (degrees) of the gradient fill</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Image,System.Drawing.Drawing2D.WrapMode)">
            <summary>
            Constructor that creates a texture fill, setting <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/> and using the specified image.
            </summary>
            <param name="image">The <see cref="T:System.Drawing.Image"/> to use for filling</param>
            <param name="wrapMode">The <see cref="T:System.Drawing.Drawing2D.WrapMode"/> class that controls the image wrapping properties</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Brush)">
            <summary>
            Constructor that creates a <see cref="P:ZedGraph.Fill.Brush"/> fill, using a user-supplied, custom
            <see cref="P:ZedGraph.Fill.Brush"/>.  The brush will be scaled to fit the destination screen object
            unless you manually change <see cref="P:ZedGraph.Fill.IsScaled"/> to false;
            </summary>
            <param name="brush">The <see cref="P:ZedGraph.Fill.Brush"/> to use for fancy fills.  Typically, this would
            be a <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/> or a <see cref="T:System.Drawing.TextureBrush"/> class</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Brush,System.Boolean)">
            <summary>
            Constructor that creates a <see cref="P:ZedGraph.Fill.Brush"/> fill, using a user-supplied, custom
            <see cref="P:ZedGraph.Fill.Brush"/>.  The brush will be scaled to fit the destination screen object
            according to the <see paramref="isScaled"/> parameter.
            </summary>
            <param name="brush">The <see cref="P:ZedGraph.Fill.Brush"/> to use for fancy fills.  Typically, this would
            be a <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/> or a <see cref="T:System.Drawing.TextureBrush"/> class</param>
            <param name="isScaled">Determines if the brush will be scaled to fit the bounding box
            of the destination object.  true to scale it, false to leave it unscaled</param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Drawing.Brush,ZedGraph.AlignH,ZedGraph.AlignV)">
            <summary>
            Constructor that creates a <see cref="P:ZedGraph.Fill.Brush"/> fill, using a user-supplied, custom
            <see cref="P:ZedGraph.Fill.Brush"/>.  This constructor will make the brush unscaled (see <see cref="P:ZedGraph.Fill.IsScaled"/>),
            but it provides <see paramref="alignH"/> and <see paramref="alignV"/> parameters to control
            alignment of the brush with respect to the filled object.
            </summary>
            <param name="brush">The <see cref="P:ZedGraph.Fill.Brush"/> to use for fancy fills.  Typically, this would
            be a <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/> or a <see cref="T:System.Drawing.TextureBrush"/> class</param>
            <param name="alignH">Controls the horizontal alignment of the brush within the filled object
            (see <see cref="P:ZedGraph.Fill.AlignH"/></param>
            <param name="alignV">Controls the vertical alignment of the brush within the filled object
            (see <see cref="P:ZedGraph.Fill.AlignV"/></param>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(ZedGraph.Fill)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The Fill object from which to copy</param>
        </member>
        <member name="M:ZedGraph.Fill.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.Fill.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.Fill.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.Fill.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.Fill.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.Fill.MakeBrush(System.Drawing.RectangleF)">
            <summary>
            Create a fill brush using current properties.  This method will construct a brush based on the
            settings of <see cref="P:ZedGraph.Fill.Type"/>, <see cref="P:ZedGraph.Fill.Color"/>
            and <see cref="P:ZedGraph.Fill.Brush"/>.  If
            <see cref="P:ZedGraph.Fill.Type"/> is set to <see cref="F:ZedGraph.FillType.Brush"/> and
            <see cref="P:ZedGraph.Fill.Brush"/>
            is null, then a <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/> will be created between the colors of
            <see cref="P:System.Drawing.Color.White"/> and <see cref="P:ZedGraph.Fill.Color"/>.
            </summary>
            <param name="rect">A rectangle that bounds the object to be filled.  This determines
            the start and end of the gradient fill.</param>
            <returns>A <see cref="T:System.Drawing.Brush"/> class representing the fill brush</returns>
        </member>
        <member name="M:ZedGraph.Fill.MakeBrush(System.Drawing.RectangleF,ZedGraph.PointPair)">
            <summary>
            Create a fill brush using current properties.  This method will construct a brush based on the
            settings of <see cref="P:ZedGraph.Fill.Type"/>, <see cref="P:ZedGraph.Fill.Color"/>
            and <see cref="P:ZedGraph.Fill.Brush"/>.  If
            <see cref="P:ZedGraph.Fill.Type"/> is set to <see cref="F:ZedGraph.FillType.Brush"/> and
            <see cref="P:ZedGraph.Fill.Brush"/>
            is null, then a <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/> will be created between the colors of
            <see cref="P:System.Drawing.Color.White"/> and <see cref="P:ZedGraph.Fill.Color"/>.
            </summary>
            <param name="rect">A rectangle that bounds the object to be filled.  This determines
            the start and end of the gradient fill.</param>
            <param name="dataValue">The data value to be used for a value-based
            color gradient.  This is only applicable for <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/> or <see cref="F:ZedGraph.FillType.GradientByZ"/>.</param>
            <returns>A <see cref="T:System.Drawing.Brush"/> class representing the fill brush</returns>
        </member>
        <member name="M:ZedGraph.Fill.Draw(System.Drawing.Graphics,System.Drawing.RectangleF)">
            <summary>
            Fill the background of the <see cref="T:System.Drawing.RectangleF"/> area, using the
            fill type from this <see cref="T:ZedGraph.Fill"/>.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="rect">The <see cref="T:System.Drawing.RectangleF"/> struct specifying the area
            to be filled</param>
        </member>
        <member name="M:ZedGraph.Fill.Draw(System.Drawing.Graphics,System.Drawing.RectangleF,ZedGraph.PointPair)">
            <summary>
            Fill the background of the <see cref="T:System.Drawing.RectangleF"/> area, using the
            fill type from this <see cref="T:ZedGraph.Fill"/>.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="rect">The <see cref="T:System.Drawing.RectangleF"/> struct specifying the area
            to be filled</param>
            <param name="pt">The data value to be used in case it's a
            <see cref="F:ZedGraph.FillType.GradientByX"/>, <see cref="F:ZedGraph.FillType.GradientByY"/>, or
            <see cref="F:ZedGraph.FillType.GradientByZ"/> <see cref="T:ZedGraph.FillType"/>.</param>
        </member>
        <member name="P:ZedGraph.Fill.Color">
            <summary>
            The fill color.  This property is used as a single color to make a solid fill
            (<see cref="P:ZedGraph.Fill.Type"/> is <see cref="F:ZedGraph.FillType.Solid"/>), or it can be used in 
            combination with <see cref="P:System.Drawing.Color.White"/> to make a
            <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/>
            when <see cref="P:ZedGraph.Fill.Type"/> is <see cref="F:ZedGraph.FillType.Brush"/> and <see cref="P:ZedGraph.Fill.Brush"/>
            is null.
            </summary>
            <seealso cref="P:ZedGraph.Fill.Type"/>
        </member>
        <member name="P:ZedGraph.Fill.SecondaryValueGradientColor">
            <summary>
            Gets or sets the secondary color for gradientByValue fills.
            </summary>
            <remarks>
            This property is only applicable if the <see cref="P:ZedGraph.Fill.Type"/> is
            <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/>, or
            <see cref="F:ZedGraph.FillType.GradientByZ"/>.  Once the gradient-by-value logic picks
            a color, a new gradient will be created using the SecondaryValueGradientColor, the
            resulting gradient-by-value color, and the angle setting for this
            <see cref="T:ZedGraph.Fill"/>. Use a value of <see cref="F:System.Drawing.Color.Empty">Color.Empty</see> to have
            a solid-color <see cref="T:ZedGraph.Fill"/> resulting from a gradient-by-value
            <see cref="T:ZedGraph.FillType"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.Fill.Brush">
            <summary>
            The custom fill brush.  This can be a <see cref="T:System.Drawing.SolidBrush"/>, a
            <see cref="T:System.Drawing.Drawing2D.LinearGradientBrush"/>, or a <see cref="T:System.Drawing.TextureBrush"/>.  This property is
            only applicable if the <see cref="P:ZedGraph.Fill.Type"/> property is set
            to <see cref="F:ZedGraph.FillType.Brush"/>.
            </summary>
        </member>
        <member name="P:ZedGraph.Fill.Type">
            <summary>
            Determines the type of fill, which can be either solid
            color (<see cref="F:ZedGraph.FillType.Solid"/>) or a custom brush
            (<see cref="F:ZedGraph.FillType.Brush"/>).  See <see cref="P:ZedGraph.Fill.Type"/> for
            more information.
            </summary>
            <seealso cref="P:ZedGraph.Fill.Color"/>
        </member>
        <member name="P:ZedGraph.Fill.IsVisible">
            <summary>
            This property determines the type of color fill. 
            Returns true if the <see cref="P:ZedGraph.Fill.Type"/> property is either
            <see cref="F:ZedGraph.FillType.Solid"/> or
            <see cref="F:ZedGraph.FillType.Brush"/>.  If set to true, this property
            will automatically set the <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.Brush"/>.  If set to false, this property
            will automatically set the <see cref="P:ZedGraph.Fill.Type"/> to
            <see cref="F:ZedGraph.FillType.None"/>.  In order to get a regular
            solid-color fill, you have to manually set <see cref="P:ZedGraph.Fill.Type"/>
            to <see cref="F:ZedGraph.FillType.Solid"/>.
            </summary>
            <seealso cref="P:ZedGraph.Fill.Color"/>
            <seealso cref="P:ZedGraph.Fill.Brush"/>
            <seealso cref="P:ZedGraph.Fill.Type"/>
        </member>
        <member name="P:ZedGraph.Fill.IsScaled">
            <summary>
            Determines if the brush will be scaled to the bounding box
            of the filled object.  If this value is false, then the brush will only be aligned
            with the filled object based on the <see cref="P:ZedGraph.Fill.AlignH"/> and <see cref="P:ZedGraph.Fill.AlignV"/>
            properties.
            </summary>
        </member>
        <member name="P:ZedGraph.Fill.AlignH">
            <summary>
            Determines how the brush will be aligned with the filled object
            in the horizontal direction.  This value is a <see cref="T:ZedGraph.AlignH"/> enumeration.
            This field only applies if <see cref="P:ZedGraph.Fill.IsScaled"/> is false.
            </summary>
            <seealso cref="P:ZedGraph.Fill.AlignV"/>
        </member>
        <member name="P:ZedGraph.Fill.AlignV">
            <summary>
            Determines how the brush will be aligned with the filled object
            in the vertical direction.  This value is a <see cref="T:ZedGraph.AlignV"/> enumeration.
            This field only applies if <see cref="P:ZedGraph.Fill.IsScaled"/> is false.
            </summary>
            <seealso cref="P:ZedGraph.Fill.AlignH"/>
        </member>
        <member name="P:ZedGraph.Fill.IsGradientValueType">
            <summary>
            Returns a boolean value indicating whether or not this fill is a "Gradient-By-Value"
            type.  This is true for <see cref="F:ZedGraph.FillType.GradientByX"/>, <see cref="F:ZedGraph.FillType.GradientByY"/>,
            or <see cref="F:ZedGraph.FillType.GradientByZ"/>.
            </summary>
            <remarks>
            The gradient by value fill method allows the fill color for each point or bar to
            be based on a value for that point (either X, Y, or Z in the <see cref="T:ZedGraph.IPointList"/>.
            For example, assume a <see cref="T:ZedGraph.Fill"/> class is defined with a linear gradient ranging from
            <see cref="P:System.Drawing.Color.Blue"/> to <see cref="P:System.Drawing.Color.Red"/> and the <see cref="P:ZedGraph.Fill.Type"/>
            is set to <see cref="F:ZedGraph.FillType.GradientByY"/>.  If <see cref="P:ZedGraph.Fill.RangeMin"/> is set to 
            100.0 and <see cref="P:ZedGraph.Fill.RangeMax"/> is set to 200.0, then a point that has a Y value of
            100 or less will be colored blue, a point with a Y value of 200 or more will be
            colored red, and a point between 100 and 200 will have a color based on a linear scale
            between blue and red.  Note that the fill color is always solid for any given point.
            You can use the Z value from <see cref="T:ZedGraph.IPointList"/> along with
            <see cref="F:ZedGraph.FillType.GradientByZ"/> to color individual points according to some
            property that is independent of the X,Y point pair.
            </remarks>
            <value>true if this is a Gradient-by-value type, false otherwise</value>
            <seealso cref="F:ZedGraph.FillType.GradientByX"/>
            <seealso cref="F:ZedGraph.FillType.GradientByY"/>
            <seealso cref="F:ZedGraph.FillType.GradientByZ"/>
        </member>
        <member name="P:ZedGraph.Fill.RangeMin">
            <summary>
            The minimum user-scale value for the gradient-by-value determination.  This defines
            the user-scale value for the start of the gradient.
            </summary>
            <seealso cref="F:ZedGraph.FillType.GradientByX"/>
            <seealso cref="F:ZedGraph.FillType.GradientByY"/>
            <seealso cref="F:ZedGraph.FillType.GradientByZ"/>
            <seealso cref="P:ZedGraph.Fill.IsGradientValueType"/>
            <seealso cref="P:ZedGraph.Fill.RangeMax"/>
            <seealso cref="P:ZedGraph.Fill.RangeDefault"/>
            <value>A double value, in user scale unit</value>
        </member>
        <member name="P:ZedGraph.Fill.RangeMax">
            <summary>
            The maximum user-scale value for the gradient-by-value determination.  This defines
            the user-scale value for the end of the gradient.
            </summary>
            <seealso cref="F:ZedGraph.FillType.GradientByX"/>
            <seealso cref="F:ZedGraph.FillType.GradientByY"/>
            <seealso cref="F:ZedGraph.FillType.GradientByZ"/>
            <seealso cref="P:ZedGraph.Fill.IsGradientValueType"/>
            <seealso cref="P:ZedGraph.Fill.RangeMin"/>
            <seealso cref="P:ZedGraph.Fill.RangeDefault"/>
            <value>A double value, in user scale unit</value>
        </member>
        <member name="P:ZedGraph.Fill.RangeDefault">
            <summary>
            The default user-scale value for the gradient-by-value determination.  This defines the
            value that will be used when there is no point value available, or the actual point value
            is invalid.
            </summary>
            <remarks>
            Note that this value, when defined, will determine the color that is used in the legend.
            If this value is set to double.MaxValue, then it remains "undefined."  In this case, the
            legend symbols will actually be filled with a color gradient representing the range of
            colors.
            </remarks>
            <seealso cref="F:ZedGraph.FillType.GradientByX"/>
            <seealso cref="F:ZedGraph.FillType.GradientByY"/>
            <seealso cref="F:ZedGraph.FillType.GradientByZ"/>
            <seealso cref="P:ZedGraph.Fill.IsGradientValueType"/>
            <seealso cref="P:ZedGraph.Fill.RangeMin"/>
            <seealso cref="P:ZedGraph.Fill.RangeMax"/>
            <value>A double value, in user scale unit</value>
        </member>
        <member name="T:ZedGraph.Fill.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.Fill"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill.Default.IsScaled">
            <summary>
            The default scaling mode for <see cref="P:ZedGraph.Fill.Brush"/> fills.
            This is the default value for the <see cref="P:ZedGraph.Fill.IsScaled"/> property.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill.Default.AlignH">
            <summary>
            The default horizontal alignment for <see cref="P:ZedGraph.Fill.Brush"/> fills.
            This is the default value for the <see cref="P:ZedGraph.Fill.AlignH"/> property.
            </summary>
        </member>
        <member name="F:ZedGraph.Fill.Default.AlignV">
            <summary>
            The default vertical alignment for <see cref="P:ZedGraph.Fill.Brush"/> fills.
            This is the default value for the <see cref="P:ZedGraph.Fill.AlignV"/> property.
            </summary>
        </member>
        <member name="T:ZedGraph.ErrorBarItem">
            <summary>
            Encapsulates an "Error Bar" curve type that displays a vertical or horizontal
            line with a symbol at each end.
            </summary>
            <remarks>The <see cref="T:ZedGraph.ErrorBarItem"/> type is intended for displaying
            confidence intervals, candlesticks, stock High-Low charts, etc.  It is
            technically not a bar, since it is drawn as a vertical or horizontal line.
            The default symbol at each end of the "bar" is <see cref="F:ZedGraph.SymbolType.HDash"/>,
            which creates an "I-Beam".  For horizontal bars
            (<see cref="F:ZedGraph.BarBase.Y"/> or
            <see cref="F:ZedGraph.BarBase.Y2"/>), you will need to change the symbol to
            <see cref="F:ZedGraph.SymbolType.VDash"/> to get horizontal "I-Beams".
            Since the horizontal segments are actually symbols, their widths are
            controlled by the symbol size in <see cref="P:ZedGraph.ErrorBar.Symbol"/>,
            specified in points (1/72nd inch).  The position of each "I-Beam" is set
            according to the <see cref="T:ZedGraph.PointPair"/> values.  The independent axis
            is assigned with <see cref="P:ZedGraph.BarSettings.Base"/>, and is a
            <see cref="T:ZedGraph.BarBase"/> enum type.</remarks>
            <author> John Champion </author>
            <version> $Revision: 3.18 $ $Date: 2007/01/21 07:49:05 $ </version>
        </member>
        <member name="F:ZedGraph.ErrorBarItem.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.ErrorBarItem._bar">
            <summary>
            Private field that stores a reference to the <see cref="T:ZedGraph.ErrorBar"/>
            class defined for this <see cref="T:ZedGraph.ErrorBarItem"/>.  Use the public
            property <see cref="T:ZedGraph.ErrorBar"/> to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.IsZIncluded(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the Z data range should be included in the axis scaling calculations.
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the Z data are included, false otherwise</value>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.IsXIndependent(ZedGraph.GraphPane)">
            <summary>
            Gets a flag indicating if the X axis is the independent axis for this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The parent <see cref="T:ZedGraph.GraphPane"/> of this <see cref="T:ZedGraph.CurveItem"/>.
            </param>
            <value>true if the X axis is independent, false otherwise</value>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.#ctor(System.String)">
            <summary>
            Create a new <see cref="T:ZedGraph.ErrorBarItem"/>, specifying only the legend label.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.#ctor(System.String,System.Double[],System.Double[],System.Double[],System.Drawing.Color)">
            <summary>
            Create a new <see cref="T:ZedGraph.ErrorBarItem"/> using the specified properties.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
            <param name="x">An array of double precision values that define
            the X axis values for this curve</param>
            <param name="y">An array of double precision values that define
            the Y axis values for this curve</param>
            <param name="lowValue">An array of double precision values that define
            the lower dependent values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="T:ZedGraph.Line"/> properties.
            </param>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.#ctor(System.String,ZedGraph.IPointList,System.Drawing.Color)">
            <summary>
            Create a new <see cref="T:ZedGraph.ErrorBarItem"/> using the specified properties.
            </summary>
            <param name="label">The label that will appear in the legend.</param>
            <param name="points">A <see cref="T:ZedGraph.IPointList"/> of double precision values that define
            the X, Y and lower dependent values for this curve</param>
            <param name="color">A <see cref="T:System.Drawing.Color"/> value that will be applied to
            the <see cref="T:ZedGraph.Line"/> properties.
            </param>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.#ctor(ZedGraph.ErrorBarItem)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.ErrorBarItem"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.ErrorBarItem.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Int32,System.Single)">
            <summary>
            Do all rendering associated with this <see cref="T:ZedGraph.ErrorBarItem"/> to the specified
            <see cref="T:System.Drawing.Graphics"/> device.  This method is normally only
            called by the Draw method of the parent <see cref="T:ZedGraph.CurveList"/>
            collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="pos">The ordinal position of the current <see cref="T:ZedGraph.ErrorBarItem"/>
            curve.</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.DrawLegendKey(System.Drawing.Graphics,ZedGraph.GraphPane,System.Drawing.RectangleF,System.Single)">
            <summary>
            Draw a legend key entry for this <see cref="T:ZedGraph.ErrorBarItem"/> at the specified location
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="rect">The <see cref="T:System.Drawing.RectangleF"/> struct that specifies the
            location for the legend key</param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.ErrorBarItem.GetCoords(ZedGraph.GraphPane,System.Int32,System.String@)">
            <summary>
            Determine the coords for the rectangle associated with a specified point for 
            this <see cref="T:ZedGraph.CurveItem"/>
            </summary>
            <param name="pane">The <see cref="T:ZedGraph.GraphPane"/> to which this curve belongs</param>
            <param name="i">The index of the point of interest</param>
            <param name="coords">A list of coordinates that represents the "rect" for
            this point (used in an html AREA tag)</param>
            <returns>true if it's a valid point, false otherwise</returns>
        </member>
        <member name="P:ZedGraph.ErrorBarItem.Bar">
            <summary>
            Gets a reference to the <see cref="T:ZedGraph.ErrorBar"/> class defined
            for this <see cref="T:ZedGraph.ErrorBarItem"/>.
            </summary>
        </member>
        <member name="T:ZedGraph.ErrorBar">
            <summary>
            This class handles the drawing of the curve <see cref="T:ZedGraph.ErrorBar"/> objects.
            The Error Bars are the vertical lines with a symbol at each end.
            </summary>
            <remarks>To draw "I-Beam" bars, the symbol type defaults to
            <see cref="F:ZedGraph.SymbolType.HDash"/>, which is just a horizontal line.
            If <see cref="T:ZedGraph.BarBase"/> is Y-oriented, then the symbol type should be
            set to <see cref="F:ZedGraph.SymbolType.VDash"/> to get the same effect.
            </remarks>
            
            <author> John Champion </author>
            <version> $Revision: 3.19 $ $Date: 2007/01/25 07:56:08 $ </version>
        </member>
        <member name="F:ZedGraph.ErrorBar.schema">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.ErrorBar._isVisible">
            <summary>
            Private field that stores the visibility of this
            <see cref="T:ZedGraph.ErrorBar"/>.  Use the public
            property <see cref="P:ZedGraph.ErrorBar.IsVisible"/> to access this value.  If this value is
            false, the symbols will not be shown.
            </summary>
        </member>
        <member name="F:ZedGraph.ErrorBar._color">
            <summary>
            Private field that stores the error bar color.  Use the public
            property <see cref="P:ZedGraph.ErrorBar.Color"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.ErrorBar._penWidth">
            <summary>
            Private field that stores the pen width for this error bar.  Use the public
            property <see cref="P:ZedGraph.ErrorBar.PenWidth"/> to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.ErrorBar._symbol">
            <summary>
            private field that contains the symbol element that will be drawn
            at the top and bottom of the error bar.  Use the public property
            <see cref="P:ZedGraph.ErrorBar.Symbol"/> to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.ErrorBar.#ctor">
            <summary>
            Default constructor that sets all <see cref="T:ZedGraph.ErrorBar"/> properties to
            default values as defined in the <see cref="T:ZedGraph.ErrorBar.Default"/> class.
            </summary>
        </member>
        <member name="M:ZedGraph.ErrorBar.#ctor(System.Drawing.Color)">
            <summary>
            Default constructor that sets the
            <see cref="P:ZedGraph.ErrorBar.Color"/> as specified, and the remaining
            <see cref="T:ZedGraph.ErrorBar"/> properties to default
            values as defined in the <see cref="T:ZedGraph.ErrorBar.Default"/> class.
            </summary>
            <param name="color">A <see cref="P:ZedGraph.ErrorBar.Color"/> value indicating
            the color of the symbol
            </param>
        </member>
        <member name="M:ZedGraph.ErrorBar.#ctor(ZedGraph.ErrorBar)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.ErrorBar"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.ErrorBar.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.ErrorBar.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.ErrorBar.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.ErrorBar.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.ErrorBar.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.ErrorBar.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,System.Boolean,System.Single,System.Single,System.Single,System.Single,System.Drawing.Pen,System.Boolean,ZedGraph.PointPair)">
            <summary>
            Draw the <see cref="T:ZedGraph.ErrorBar"/> to the specified <see cref="T:System.Drawing.Graphics"/>
            device at the specified location.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="isXBase">boolean value that indicates if the "base" axis for this
            <see cref="T:ZedGraph.ErrorBar"/> is the X axis.  True for an <see cref="T:ZedGraph.XAxis"/> base,
            false for a <see cref="T:ZedGraph.YAxis"/> or <see cref="T:ZedGraph.Y2Axis"/> base.</param>
            <param name="pixBase">The independent axis position of the center of the error bar in
            pixel units</param>
            <param name="pixValue">The dependent axis position of the top of the error bar in
            pixel units</param>
            <param name="pixLowValue">The dependent axis position of the bottom of the error bar in
            pixel units</param>
            <param name="scaleFactor">
            The scaling factor for the features of the graph based on the <see cref="P:ZedGraph.PaneBase.BaseDimension"/>.  This
            scaling factor is calculated by the <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method.  The scale factor
            represents a linear multiple to be applied to font sizes, symbol sizes, etc.</param>
            <param name="pen">A pen with attributes of <see cref="P:ZedGraph.ErrorBar.Color"/> and
            <see cref="P:ZedGraph.ErrorBar.PenWidth"/> for this <see cref="T:ZedGraph.ErrorBar"/></param>
            <param name="dataValue">The data value to be used for a value-based
            color gradient.  This is only applicable for <see cref="F:ZedGraph.FillType.GradientByX"/>,
            <see cref="F:ZedGraph.FillType.GradientByY"/> or <see cref="F:ZedGraph.FillType.GradientByZ"/>.</param>
            <param name="isSelected">Indicates that the <see cref="T:ZedGraph.ErrorBar"/> should be drawn
            with attributes from the <see cref="T:ZedGraph.Selection"/> class.
            </param>
        </member>
        <member name="M:ZedGraph.ErrorBar.Draw(System.Drawing.Graphics,ZedGraph.GraphPane,ZedGraph.ErrorBarItem,ZedGraph.Axis,ZedGraph.Axis,System.Single)">
            <summary>
            Draw all the <see cref="T:ZedGraph.ErrorBar"/>'s to the specified <see cref="T:System.Drawing.Graphics"/>
            device as a an error bar at each defined point.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="curve">A <see cref="T:ZedGraph.CurveItem"/> object representing the
            <see cref="T:ZedGraph.Bar"/>'s to be drawn.</param>
            <param name="baseAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the base (independent)
            axis for the <see cref="T:ZedGraph.Bar"/></param>
            <param name="valueAxis">The <see cref="T:ZedGraph.Axis"/> class instance that defines the value (dependent)
            axis for the <see cref="T:ZedGraph.Bar"/></param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="P:ZedGraph.ErrorBar.IsVisible">
            <summary>
            Gets or sets a property that shows or hides the <see cref="T:ZedGraph.ErrorBar"/>.
            </summary>
            <value>true to show the error bar, false to hide it</value>
            <seealso cref="F:ZedGraph.ErrorBar.Default.IsVisible"/>
        </member>
        <member name="P:ZedGraph.ErrorBar.Color">
            <summary>
            Gets or sets the <see cref="T:System.Drawing.Color"/> data for this
            <see cref="T:ZedGraph.ErrorBar"/>.
            </summary>
            <remarks>This property only controls the color of
            the vertical line.  The symbol color is controlled separately in
            the <see cref="P:ZedGraph.ErrorBar.Symbol"/> property.
            </remarks>
        </member>
        <member name="P:ZedGraph.ErrorBar.PenWidth">
            <summary>
            The pen width to be used for drawing error bars
            Units are points.
            </summary>
            <remarks>This property only controls the pen width for the
            vertical line.  The pen width for the symbol outline is
            controlled separately by the <see cref="P:ZedGraph.ErrorBar.Symbol"/> property.
            </remarks>
        </member>
        <member name="P:ZedGraph.ErrorBar.Symbol">
            <summary>
            Contains the symbol element that will be drawn
            at the top and bottom of the error bar.
            </summary>
        </member>
        <member name="T:ZedGraph.ErrorBar.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.ErrorBar"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.ErrorBar.Default.Size">
            <summary>
            The default size for curve symbols
            (<see cref="P:ZedGraph.Symbol.Size"/> property),
            in units of points.
            </summary>
        </member>
        <member name="F:ZedGraph.ErrorBar.Default.PenWidth">
            <summary>
            The default pen width to be used for drawing error bars
            (<see cref="P:ZedGraph.ErrorBar.PenWidth"/> property).  Units are points.
            </summary>
        </member>
        <member name="F:ZedGraph.ErrorBar.Default.IsVisible">
            <summary>
            The default display mode for symbols (<see cref="P:ZedGraph.ErrorBar.IsVisible"/> property).
            true to display symbols, false to hide them.
            </summary>
        </member>
        <member name="F:ZedGraph.ErrorBar.Default.Color">
            <summary>
            The default color for drawing error bars (<see cref="P:ZedGraph.ErrorBar.Color"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.ErrorBar.Default.Type">
            <summary>
            The default symbol for drawing at the top and bottom of the
            error bar (see <see cref="P:ZedGraph.ErrorBar.Symbol"/>).
            </summary>
        </member>
        <member name="T:ZedGraph.DataSourcePointList">
            <summary>
            
            </summary>
            <seealso cref="T:ZedGraph.IPointList"/>
            <seealso cref="T:ZedGraph.IPointListEdit"/>
            
            <author>John Champion</author>
            <version> $Revision: 3.3 $ $Date: 2007/02/18 05:51:53 $ </version>
        </member>
        <member name="M:ZedGraph.DataSourcePointList.#ctor">
            <summary>
            Default Constructor
            </summary>
        </member>
        <member name="M:ZedGraph.DataSourcePointList.#ctor(ZedGraph.DataSourcePointList)">
            <summary>
            Constructor to initialize the DataSourcePointList from an
            existing <see cref="T:ZedGraph.DataSourcePointList"/>
            </summary>
        </member>
        <member name="M:ZedGraph.DataSourcePointList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.DataSourcePointList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.DataSourcePointList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.DataSourcePointList.GetDouble(System.Object,System.String)">
            <summary>
            Extract a double value from the specified table row or data object with the
            specified column name.
            </summary>
            <param name="row">The data object from which to extract the value</param>
            <param name="dataMember">The property name or column name of the value
            to be extracted</param>
        </member>
        <member name="M:ZedGraph.DataSourcePointList.GetObject(System.Object,System.String)">
            <summary>
            Extract an object from the specified table row or data object with the
            specified column name.
            </summary>
            <param name="row">The data object from which to extract the object</param>
            <param name="dataMember">The property name or column name of the object
            to be extracted</param>
        </member>
        <member name="P:ZedGraph.DataSourcePointList.Item(System.Int32)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.PointPair"/> object by
            its ordinal position in the list.
            </summary>
            <param name="index">The ordinal position (zero-based) of the
            <see cref="T:ZedGraph.PointPair"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.PointPair"/> object reference.</value>
        </member>
        <member name="P:ZedGraph.DataSourcePointList.Count">
            <summary>
            gets the number of points available in the list
            </summary>
        </member>
        <member name="P:ZedGraph.DataSourcePointList.BindingSource">
            <summary>
            The <see cref="P:ZedGraph.DataSourcePointList.BindingSource"/> object from which to get the bound data
            </summary>
            <remarks>
            Typically, you set the <see cref="P:System.Windows.Forms.BindingSource.DataSource"/>
            property to a reference to your database, table or list object.  The
            <see cref="P:System.Windows.Forms.BindingSource.DataMember"/> property would be set
            to the name of the datatable within the
            <see cref="P:System.Windows.Forms.BindingSource.DataSource"/>,
            if applicable.</remarks>
        </member>
        <member name="P:ZedGraph.DataSourcePointList.DataSource">
            <summary>
            The table or list object from which to extract the data values.
            </summary>
            <remarks>
            This property is just an alias for
            <see cref="P:System.Windows.Forms.BindingSource.DataSource"/>.
            </remarks>
        </member>
        <member name="P:ZedGraph.DataSourcePointList.XDataMember">
            <summary>
            The <see cref="T:System.String"/> name of the property or column from which to obtain the
            X data values for the chart.
            </summary>
            <remarks>Set this to null leave the X data values set to <see cref="F:ZedGraph.PointPairBase.Missing"/>
            </remarks>
        </member>
        <member name="P:ZedGraph.DataSourcePointList.YDataMember">
            <summary>
            The <see cref="T:System.String"/> name of the property or column from which to obtain the
            Y data values for the chart.
            </summary>
            <remarks>Set this to null leave the Y data values set to <see cref="F:ZedGraph.PointPairBase.Missing"/>
            </remarks>
        </member>
        <member name="P:ZedGraph.DataSourcePointList.ZDataMember">
            <summary>
            The <see cref="T:System.String"/> name of the property or column from which to obtain the
            Z data values for the chart.
            </summary>
            <remarks>Set this to null leave the Z data values set to <see cref="F:ZedGraph.PointPairBase.Missing"/>
            </remarks>
        </member>
        <member name="P:ZedGraph.DataSourcePointList.TagDataMember">
            <summary>
            The <see cref="T:System.String"/> name of the property or column from which to obtain the
            tag values for the chart.
            </summary>
            <remarks>Set this to null leave the tag values set to null.  If this references string
            data, then the tags may be used as tooltips using the
            <see cref="P:ZedGraph.ZedGraphControl.IsShowPointValues"/> option.
            </remarks>
        </member>
        <member name="T:ZedGraph.TextObj">
            <summary>
            A class that represents a text object on the graph.  A list of
            <see cref="T:ZedGraph.GraphObj"/> objects is maintained by the
            <see cref="T:ZedGraph.GraphObjList"/> collection class.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.4 $ $Date: 2007/01/25 07:56:09 $ </version>
        </member>
        <member name="F:ZedGraph.TextObj.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.TextObj._text">
            <summary> Private field to store the actual text string for this
            <see cref="T:ZedGraph.TextObj"/>.  Use the public property <see cref="P:ZedGraph.TextObj.Text"/>
            to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.TextObj._fontSpec">
            <summary>
            Private field to store the <see cref="P:ZedGraph.TextObj.FontSpec"/> class used to render
            this <see cref="T:ZedGraph.TextObj"/>.  Use the public property <see cref="P:ZedGraph.TextObj.FontSpec"/>
            to access this class.
            </summary>
        </member>
        <member name="F:ZedGraph.TextObj._layoutArea">
            <summary>
            Private field holding the SizeF into which this <see cref="T:ZedGraph.TextObj"/>
            should be rendered. Use the public property <see cref="P:ZedGraph.TextObj.LayoutArea"/>
            to access this value.
            </summary>
        </member>
        <member name="M:ZedGraph.TextObj.#ctor(System.String,System.Double,System.Double)">
            <summary>
            Constructor that sets all <see cref="T:ZedGraph.TextObj"/> properties to default
            values as defined in the <see cref="T:ZedGraph.TextObj.Default"/> class.
            </summary>
            <param name="text">The text to be displayed.</param>
            <param name="x">The x position of the text.  The units
            of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.  The text will be
            aligned to this position based on the <see cref="T:ZedGraph.AlignH"/>
            property.</param>
            <param name="y">The y position of the text.  The units
            of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.  The text will be
            aligned to this position based on the
            <see cref="T:ZedGraph.AlignV"/> property.</param>
        </member>
        <member name="M:ZedGraph.TextObj.#ctor(System.String,System.Double,System.Double,ZedGraph.CoordType)">
            <summary>
            Constructor that sets all <see cref="T:ZedGraph.TextObj"/> properties to default
            values as defined in the <see cref="T:ZedGraph.TextObj.Default"/> class.
            </summary>
            <param name="text">The text to be displayed.</param>
            <param name="x">The x position of the text.  The units
            of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.  The text will be
            aligned to this position based on the <see cref="T:ZedGraph.AlignH"/>
            property.</param>
            <param name="y">The y position of the text.  The units
            of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.  The text will be
            aligned to this position based on the
            <see cref="T:ZedGraph.AlignV"/> property.</param>
            <param name="coordType">The <see cref="T:ZedGraph.CoordType"/> enum value that
            indicates what type of coordinate system the x and y parameters are
            referenced to.</param>
        </member>
        <member name="M:ZedGraph.TextObj.#ctor(System.String,System.Double,System.Double,ZedGraph.CoordType,ZedGraph.AlignH,ZedGraph.AlignV)">
            <summary>
            Constructor that sets all <see cref="T:ZedGraph.TextObj"/> properties to default
            values as defined in the <see cref="T:ZedGraph.TextObj.Default"/> class.
            </summary>
            <param name="text">The text to be displayed.</param>
            <param name="x">The x position of the text.  The units
            of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.  The text will be
            aligned to this position based on the <see cref="T:ZedGraph.AlignH"/>
            property.</param>
            <param name="y">The y position of the text.  The units
            of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.  The text will be
            aligned to this position based on the
            <see cref="T:ZedGraph.AlignV"/> property.</param>
            <param name="coordType">The <see cref="T:ZedGraph.CoordType"/> enum value that
            indicates what type of coordinate system the x and y parameters are
            referenced to.</param>
            <param name="alignH">The <see cref="T:ZedGraph.AlignH"/> enum that specifies
            the horizontal alignment of the object with respect to the (x,y) location</param>
            <param name="alignV">The <see cref="T:ZedGraph.AlignV"/> enum that specifies
            the vertical alignment of the object with respect to the (x,y) location</param>
        </member>
        <member name="M:ZedGraph.TextObj.#ctor">
            <summary>
            Parameterless constructor that initializes a new <see cref="T:ZedGraph.TextObj"/>.
            </summary>
        </member>
        <member name="M:ZedGraph.TextObj.#ctor(ZedGraph.TextObj)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.TextObj"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.TextObj.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.TextObj.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.TextObj.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.TextObj.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.TextObj.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.TextObj.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single)">
            <summary>
            Render this <see cref="T:ZedGraph.TextObj"/> object to the specified <see cref="T:System.Drawing.Graphics"/> device
            This method is normally only called by the Draw method
            of the parent <see cref="T:ZedGraph.GraphObjList"/> collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.TextObj.PointInBox(System.Drawing.PointF,ZedGraph.PaneBase,System.Drawing.Graphics,System.Single)">
            <summary>
            Determine if the specified screen point lies inside the bounding box of this
            <see cref="T:ZedGraph.TextObj"/>.  This method takes into account rotation and alignment
            parameters of the text, as specified in the <see cref="P:ZedGraph.TextObj.FontSpec"/>.
            </summary>
            <param name="pt">The screen point, in pixels</param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>true if the point lies in the bounding box, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.TextObj.GetCoords(ZedGraph.PaneBase,System.Drawing.Graphics,System.Single,System.String@,System.String@)">
            <summary>
            Determines the shape type and Coords values for this GraphObj
            </summary>
        </member>
        <member name="P:ZedGraph.TextObj.LayoutArea">
            <summary>
            
            </summary>
        </member>
        <member name="P:ZedGraph.TextObj.Text">
            <summary>
            The <see cref="T:ZedGraph.TextObj"/> to be displayed.  This text can be multi-line by
            including newline ('\n') characters between the lines.
            </summary>
        </member>
        <member name="P:ZedGraph.TextObj.FontSpec">
            <summary>
            Gets a reference to the <see cref="P:ZedGraph.TextObj.FontSpec"/> class used to render
            this <see cref="T:ZedGraph.TextObj"/>
            </summary>
            <seealso cref="F:ZedGraph.TextObj.Default.FontColor"/>
            <seealso cref="F:ZedGraph.TextObj.Default.FontBold"/>
            <seealso cref="F:ZedGraph.TextObj.Default.FontItalic"/>
            <seealso cref="F:ZedGraph.TextObj.Default.FontUnderline"/>
            <seealso cref="F:ZedGraph.TextObj.Default.FontFamily"/>
            <seealso cref="F:ZedGraph.TextObj.Default.FontSize"/>
        </member>
        <member name="T:ZedGraph.TextObj.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.TextObj"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.TextObj.Default.FontFamily">
            <summary>
            The default font family for the <see cref="T:ZedGraph.TextObj"/> text
            (<see cref="P:ZedGraph.FontSpec.Family"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.TextObj.Default.FontSize">
            <summary>
            The default font size for the <see cref="T:ZedGraph.TextObj"/> text
            (<see cref="P:ZedGraph.FontSpec.Size"/> property).  Units are
            in points (1/72 inch).
            </summary>
        </member>
        <member name="F:ZedGraph.TextObj.Default.FontColor">
            <summary>
            The default font color for the <see cref="T:ZedGraph.TextObj"/> text
            (<see cref="P:ZedGraph.FontSpec.FontColor"/> property).
            </summary>
        </member>
        <member name="F:ZedGraph.TextObj.Default.FontBold">
            <summary>
            The default font bold mode for the <see cref="T:ZedGraph.TextObj"/> text
            (<see cref="P:ZedGraph.FontSpec.IsBold"/> property). true
            for a bold typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.TextObj.Default.FontUnderline">
            <summary>
            The default font underline mode for the <see cref="T:ZedGraph.TextObj"/> text
            (<see cref="P:ZedGraph.FontSpec.IsUnderline"/> property). true
            for an underlined typeface, false otherwise.
            </summary>
        </member>
        <member name="F:ZedGraph.TextObj.Default.FontItalic">
            <summary>
            The default font italic mode for the <see cref="T:ZedGraph.TextObj"/> text
            (<see cref="P:ZedGraph.FontSpec.IsItalic"/> property). true
            for an italic typeface, false otherwise.
            </summary>
        </member>
        <member name="T:ZedGraph.ScrollRangeList">
            <summary>
            A collection class containing a list of <see cref="T:ZedGraph.ScrollRange"/> objects.
            </summary>
            
            <author>John Champion</author>
            <version> $Revision: 3.3 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="M:ZedGraph.ScrollRangeList.#ctor">
            <summary>
            Default constructor for the collection class.
            </summary>
        </member>
        <member name="M:ZedGraph.ScrollRangeList.#ctor(ZedGraph.ScrollRangeList)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.ScrollRangeList"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.ScrollRangeList.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.ScrollRangeList.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.ScrollRangeList.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="P:ZedGraph.ScrollRangeList.Item(System.Int32)">
            <summary>
            Indexer to access the specified <see cref="T:ZedGraph.ScrollRange"/> object by
            its ordinal position in the list.
            </summary>
            <param name="index">The ordinal position (zero-based) of the
            <see cref="T:ZedGraph.ScrollRange"/> object to be accessed.</param>
            <value>A <see cref="T:ZedGraph.ScrollRange"/> object instance</value>
        </member>
        <member name="T:ZedGraph.SampleType">
            <summary>
            enumeration used to indicate which type of data will be plotted.
            </summary>
        </member>
        <member name="F:ZedGraph.SampleType.Time">
            <summary>
            Designates the "Time" property will be used
            </summary>
        </member>
        <member name="F:ZedGraph.SampleType.Position">
            <summary>
            Designates the "Position" property will be used
            </summary>
        </member>
        <member name="F:ZedGraph.SampleType.VelocityInst">
            <summary>
            Designates the Instantaneous Velocity property will be used
            </summary>
        </member>
        <member name="F:ZedGraph.SampleType.TimeDiff">
            <summary>
            Designates the "Time since start" property will be used
            </summary>
        </member>
        <member name="F:ZedGraph.SampleType.VelocityAvg">
            <summary>
            Designates the Average Velocity property will be used
            </summary>
        </member>
        <member name="T:ZedGraph.Sample">
            <summary>
            A simple storage class to maintain an individual sampling of data
            </summary>
        </member>
        <member name="P:ZedGraph.Sample.Time">
            <summary>
            The time of the sample
            </summary>
        </member>
        <member name="P:ZedGraph.Sample.Position">
            <summary>
            The position at sample time
            </summary>
        </member>
        <member name="P:ZedGraph.Sample.Velocity">
            <summary>
            The instantaneous velocity at sample time
            </summary>
        </member>
        <member name="T:ZedGraph.SamplePointList">
            <summary>
            A collection class to maintain a set of samples
            </summary>
        </member>
        <member name="F:ZedGraph.SamplePointList.XType">
            <summary>
            Determines what data type gets plotted for the X values
            </summary>
        </member>
        <member name="F:ZedGraph.SamplePointList.YType">
            <summary>
            Determines what data type gets plotted for the Y values
            </summary>
        </member>
        <member name="M:ZedGraph.SamplePointList.GetValue(ZedGraph.Sample,ZedGraph.SampleType)">
            <summary>
            Get the specified data type from the specified sample
            </summary>
            <param name="sample">The sample instance of interest</param>
            <param name="type">The data type to be extracted from the sample</param>
            <returns>A double value representing the requested data</returns>
        </member>
        <member name="M:ZedGraph.SamplePointList.Add(ZedGraph.Sample)">
            <summary>
            Append a sample to the collection
            </summary>
            <param name="sample">The sample to append</param>
            <returns>The ordinal position at which the sample was added</returns>
        </member>
        <member name="M:ZedGraph.SamplePointList.Clone">
            <summary>
            typesafe clone method
            </summary>
            <returns>A new cloned SamplePointList.  This returns a copy of the structure,
            but it does not duplicate the data (it just keeps a reference to the original)
            </returns>
        </member>
        <member name="M:ZedGraph.SamplePointList.#ctor">
            <summary>
            default constructor
            </summary>
        </member>
        <member name="M:ZedGraph.SamplePointList.#ctor(ZedGraph.SamplePointList)">
            <summary>
            copy constructor -- this returns a copy of the structure,
            but it does not duplicate the data (it just keeps a reference to the original)
            </summary>
            <param name="rhs">The SamplePointList to be copied</param>
        </member>
        <member name="P:ZedGraph.SamplePointList.Item(System.Int32)">
            <summary>
            Indexer: get the Sample instance at the specified ordinal position in the list
            </summary>
            <param name="index">The ordinal position in the list of samples</param>
            <returns>Returns a <see cref="T:ZedGraph.PointPair"/> instance containing the
            data specified by <see cref="F:ZedGraph.SamplePointList.XType"/> and <see cref="F:ZedGraph.SamplePointList.YType"/>
            </returns>
        </member>
        <member name="P:ZedGraph.SamplePointList.Count">
            <summary>
            Gets the number of samples in the collection
            </summary>
        </member>
        <member name="T:ZedGraph.ImageObj">
            <summary>
            A class that represents an image object on the graph.  A list of
            <see cref="T:ZedGraph.GraphObj"/> objects is maintained by the <see cref="T:ZedGraph.GraphObjList"/>
            collection class.
            </summary>
            
            <author> John Champion </author>
            <version> $Revision: 3.2 $ $Date: 2006/09/09 17:32:01 $ </version>
        </member>
        <member name="F:ZedGraph.ImageObj.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="F:ZedGraph.ImageObj._image">
            <summary>
            Private field that stores the image.  Use the public property <see cref="P:ZedGraph.ImageObj.Image"/>
            to access this value.
            </summary>
        </member>
        <member name="F:ZedGraph.ImageObj._isScaled">
            <summary>
            Private field that determines if the image will be scaled to the output rectangle.
            </summary>
            <value>true to scale the image, false to draw the image unscaled, but clipped
            to the destination rectangle</value>
        </member>
        <member name="M:ZedGraph.ImageObj.#ctor">
            <overloads>Constructors for the <see cref="T:ZedGraph.ImageObj"/> object</overloads>
            <summary>
            A default constructor that places a null <see cref="T:System.Drawing.Image"/> at a
            default <see cref="T:System.Drawing.RectangleF"/> of (0,0,1,1)
            </summary>
        </member>
        <member name="M:ZedGraph.ImageObj.#ctor(System.Drawing.Image,System.Drawing.RectangleF)">
            <summary>
            A constructor that allows the <see cref="T:System.Drawing.Image"/> and
            <see cref="T:System.Drawing.RectangleF"/> location for the
            <see cref="T:ZedGraph.ImageObj"/> to be pre-specified.
            </summary>
            <param name="image">A <see cref="T:System.Drawing.Image"/> class that defines
            the image</param>
            <param name="rect">A <see cref="T:System.Drawing.RectangleF"/> struct that defines the
            image location, specifed in units based on the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
        </member>
        <member name="M:ZedGraph.ImageObj.#ctor(System.Drawing.Image,System.Drawing.RectangleF,ZedGraph.CoordType,ZedGraph.AlignH,ZedGraph.AlignV)">
            <overloads>Constructors for the <see cref="T:ZedGraph.ImageObj"/> object</overloads>
            <summary>
            A constructor that allows the <see cref="T:System.Drawing.Image"/> and
            <see cref="T:System.Drawing.RectangleF"/> location for the
            <see cref="T:ZedGraph.ImageObj"/> to be pre-specified.
            </summary>
            <param name="image">A <see cref="T:System.Drawing.Image"/> class that defines
            the image</param>
            <param name="rect">A <see cref="T:System.Drawing.RectangleF"/> struct that defines the
            image location, specifed in units based on the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="coordType">The <see cref="T:ZedGraph.CoordType"/> enum value that
            indicates what type of coordinate system the x and y parameters are
            referenced to.</param>
            <param name="alignH">The <see cref="T:ZedGraph.AlignH"/> enum that specifies
            the horizontal alignment of the object with respect to the (x,y) location</param>
            <param name="alignV">The <see cref="T:ZedGraph.AlignV"/> enum that specifies
            the vertical alignment of the object with respect to the (x,y) location</param>
        </member>
        <member name="M:ZedGraph.ImageObj.#ctor(System.Drawing.Image,System.Double,System.Double,System.Double,System.Double)">
            <overloads>Constructors for the <see cref="T:ZedGraph.ImageObj"/> object</overloads>
            <summary>
            A constructor that allows the <see cref="T:System.Drawing.Image"/> and
            individual <see cref="T:System.Single"/> coordinate locations for the
            <see cref="T:ZedGraph.ImageObj"/> to be pre-specified.
            </summary>
            <param name="image">A <see cref="T:System.Drawing.Image"/> class that defines
            the image</param>
            <param name="left">The position of the left side of the rectangle that defines the
            <see cref="T:ZedGraph.ImageObj"/> location.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="top">The position of the top side of the rectangle that defines the
            <see cref="T:ZedGraph.ImageObj"/> location.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="width">The width of the rectangle that defines the
            <see cref="T:ZedGraph.ImageObj"/> location.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
            <param name="height">The height of the rectangle that defines the
            <see cref="T:ZedGraph.ImageObj"/> location.  The units of this position are specified by the
            <see cref="P:ZedGraph.Location.CoordinateFrame"/> property.</param>
        </member>
        <member name="M:ZedGraph.ImageObj.#ctor(ZedGraph.ImageObj)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.ImageObj"/> object from which to copy</param>
        </member>
        <member name="M:ZedGraph.ImageObj.System#ICloneable#Clone">
            <summary>
            Implement the <see cref="T:System.ICloneable"/> interface in a typesafe manner by just
            calling the typed version of <see cref="M:ZedGraph.ImageObj.Clone"/>
            </summary>
            <returns>A deep copy of this object</returns>
        </member>
        <member name="M:ZedGraph.ImageObj.Clone">
            <summary>
            Typesafe, deep-copy clone method.
            </summary>
            <returns>A new, independent copy of this class</returns>
        </member>
        <member name="M:ZedGraph.ImageObj.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.ImageObj.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
        <member name="M:ZedGraph.ImageObj.Draw(System.Drawing.Graphics,ZedGraph.PaneBase,System.Single)">
            <summary>
            Render this object to the specified <see cref="T:System.Drawing.Graphics"/> device
            This method is normally only called by the Draw method
            of the parent <see cref="T:ZedGraph.GraphObjList"/> collection object.
            </summary>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
        </member>
        <member name="M:ZedGraph.ImageObj.PointInBox(System.Drawing.PointF,ZedGraph.PaneBase,System.Drawing.Graphics,System.Single)">
            <summary>
            Determine if the specified screen point lies inside the bounding box of this
            <see cref="T:ZedGraph.ArrowObj"/>.  The bounding box is calculated assuming a distance
            of <see cref="F:ZedGraph.GraphPane.Default.NearestTol"/> pixels around the arrow segment.
            </summary>
            <param name="pt">The screen point, in pixels</param>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.PaneBase"/> object that is the parent or
            owner of this object.
            </param>
            <param name="g">
            A graphic device object to be drawn into.  This is normally e.Graphics from the
            PaintEventArgs argument to the Paint() method.
            </param>
            <param name="scaleFactor">
            The scaling factor to be used for rendering objects.  This is calculated and
            passed down by the parent <see cref="T:ZedGraph.GraphPane"/> object using the
            <see cref="M:ZedGraph.PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust
            font sizes, etc. according to the actual size of the graph.
            </param>
            <returns>true if the point lies in the bounding box, false otherwise</returns>
        </member>
        <member name="M:ZedGraph.ImageObj.GetCoords(ZedGraph.PaneBase,System.Drawing.Graphics,System.Single,System.String@,System.String@)">
            <summary>
            Determines the shape type and Coords values for this GraphObj
            </summary>
        </member>
        <member name="P:ZedGraph.ImageObj.Image">
            <summary>
            The <see cref="T:System.Drawing.Image"/> object.
            </summary>
            <value> A <see cref="T:System.Drawing.Image"/> class reference. </value>
        </member>
        <member name="P:ZedGraph.ImageObj.IsScaled">
            <summary>
            Gets or sets a property that determines if the image will be scaled to the
            output rectangle (see <see cref="T:ZedGraph.Location"/>).
            </summary>
            <value>true to scale the image, false to draw the image unscaled, but clipped
            to the destination rectangle</value>
        </member>
        <member name="T:ZedGraph.ImageObj.Default">
            <summary>
            A simple struct that defines the
            default property values for the <see cref="T:ZedGraph.ImageObj"/> class.
            </summary>
        </member>
        <member name="F:ZedGraph.ImageObj.Default.IsScaled">
            <summary>
            Default value for the <see cref="T:ZedGraph.ImageObj"/>
            <see cref="P:ZedGraph.ImageObj.IsScaled"/> property.
            </summary>
        </member>
        <member name="T:ZedGraph.ExponentScale">
            <summary>
            The ExponentScale class inherits from the <see cref="T:ZedGraph.Scale"/> class, and implements
            the features specific to <see cref="F:ZedGraph.AxisType.Exponent"/>.
            </summary>
            <remarks>
            ExponentScale is a non-linear axis in which the values are scaled using an exponential function
            with the <see cref="P:ZedGraph.Scale.Exponent"/> property.
            </remarks>
            
            <author> John Champion with contributions by jackply </author>
            <version> $Revision: 1.7 $ $Date: 2006/06/24 20:26:43 $ </version>
        </member>
        <member name="F:ZedGraph.ExponentScale.schema2">
            <summary>
            Current schema value that defines the version of the serialized file
            </summary>
        </member>
        <member name="M:ZedGraph.ExponentScale.#ctor(ZedGraph.Axis)">
            <summary>
            Default constructor that defines the owner <see cref="T:ZedGraph.Axis"/>
            (containing object) for this new object.
            </summary>
            <param name="owner">The owner, or containing object, of this instance</param>
        </member>
        <member name="M:ZedGraph.ExponentScale.#ctor(ZedGraph.Scale,ZedGraph.Axis)">
            <summary>
            The Copy Constructor
            </summary>
            <param name="rhs">The <see cref="T:ZedGraph.ExponentScale"/> object from which to copy</param>
            <param name="owner">The <see cref="T:ZedGraph.Axis"/> object that will own the
            new instance of <see cref="T:ZedGraph.ExponentScale"/></param>
        </member>
        <member name="M:ZedGraph.ExponentScale.Clone(ZedGraph.Axis)">
            <summary>
            Create a new clone of the current item, with a new owner assignment
            </summary>
            <param name="owner">The new <see cref="T:ZedGraph.Axis"/> instance that will be
            the owner of the new Scale</param>
            <returns>A new <see cref="T:ZedGraph.Scale"/> clone.</returns>
        </member>
        <member name="M:ZedGraph.ExponentScale.SetupScaleData(ZedGraph.GraphPane,ZedGraph.Axis)">
            <summary>
            Setup some temporary transform values in preparation for rendering the <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <remarks>
            This method is typically called by the parent <see cref="T:ZedGraph.GraphPane"/>
            object as part of the <see cref="M:ZedGraph.GraphPane.Draw(System.Drawing.Graphics)"/> method.  It is also
            called by <see cref="M:ZedGraph.GraphPane.GeneralTransform(System.Double,System.Double,ZedGraph.CoordType)"/> and
            <see cref="M:ZedGraph.GraphPane.ReverseTransform(System.Drawing.PointF,System.Double@,System.Double@,System.Double@)"/>
            methods to setup for coordinate transformations.
            </remarks>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="axis">
            The parent <see cref="T:ZedGraph.Axis"/> for this <see cref="T:ZedGraph.Scale"/>
            </param>
        </member>
        <member name="M:ZedGraph.ExponentScale.Linearize(System.Double)">
            <summary>
            Convert a value to its linear equivalent for this type of scale.
            </summary>
            <remarks>
            The default behavior is to just return the value unchanged.  However,
            for <see cref="F:ZedGraph.AxisType.Log"/> and <see cref="F:ZedGraph.AxisType.Exponent"/>,
            it returns the log or power equivalent.
            </remarks>
            <param name="val">The value to be converted</param>
        </member>
        <member name="M:ZedGraph.ExponentScale.DeLinearize(System.Double)">
            <summary>
            Convert a value from its linear equivalent to its actual scale value
            for this type of scale.
            </summary>
            <remarks>
            The default behavior is to just return the value unchanged.  However,
            for <see cref="F:ZedGraph.AxisType.Log"/> and <see cref="F:ZedGraph.AxisType.Exponent"/>,
            it returns the anti-log or inverse-power equivalent.
            </remarks>
            <param name="val">The value to be converted</param>
        </member>
        <member name="M:ZedGraph.ExponentScale.CalcMajorTicValue(System.Double,System.Double)">
            <summary>
            Determine the value for any major tic.
            </summary>
            <remarks>
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <param name="baseVal">
            The value of the first major tic (floating point double)
            </param>
            <param name="tic">
            The major tic number (0 = first major tic).  For log scales, this is the actual power of 10.
            </param>
            <returns>
            The specified major tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.ExponentScale.CalcMinorTicValue(System.Double,System.Int32)">
            <summary>
            Determine the value for any minor tic.
            </summary>
            <remarks>
            This method properly accounts for <see cref="P:ZedGraph.Scale.IsLog"/>, <see cref="P:ZedGraph.Scale.IsText"/>,
            and other axis format settings.
            </remarks>
            <param name="baseVal">
            The value of the first major tic (floating point double).  This tic value is the base
            reference for all tics (including minor ones).
            </param>
            <param name="iTic">
            The major tic number (0 = first major tic).  For log scales, this is the actual power of 10.
            </param>
            <returns>
            The specified minor tic value (floating point double).
            </returns>
        </member>
        <member name="M:ZedGraph.ExponentScale.CalcMinorStart(System.Double)">
            <summary>
            Internal routine to determine the ordinals of the first minor tic mark
            </summary>
            <param name="baseVal">
            The value of the first major tic for the axis.
            </param>
            <returns>
            The ordinal position of the first minor tic, relative to the first major tic.
            This value can be negative (e.g., -3 means the first minor tic is 3 minor step
            increments before the first major tic.
            </returns>
        </member>
        <member name="M:ZedGraph.ExponentScale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)">
            <summary>
            Select a reasonable exponential axis scale given a range of data values.
            </summary>
            <remarks>
            This method only applies to <see cref="F:ZedGraph.AxisType.Exponent"/> type axes, and it
            is called by the general <see cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/> method.  The exponential scale
            relies on the <see cref="P:ZedGraph.Scale.Exponent"/> property to set the scaling exponent.  This
            method honors the <see cref="P:ZedGraph.Scale.MinAuto"/>, <see cref="P:ZedGraph.Scale.MaxAuto"/>,
            and <see cref="P:ZedGraph.Scale.MajorStepAuto"/> autorange settings.
            In the event that any of the autorange settings are false, the
            corresponding <see cref="P:ZedGraph.Scale.Min"/>, <see cref="P:ZedGraph.Scale.Max"/>, or <see cref="P:ZedGraph.Scale.MajorStep"/>
            setting is explicitly honored, and the remaining autorange settings (if any) will
            be calculated to accomodate the non-autoranged values.  For log axes, the MinorStep
            value is not used.
            <para>On Exit:</para>
            <para><see cref="P:ZedGraph.Scale.Min"/> is set to scale minimum (if <see cref="P:ZedGraph.Scale.MinAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Max"/> is set to scale maximum (if <see cref="P:ZedGraph.Scale.MaxAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.MajorStep"/> is set to scale step size (if <see cref="P:ZedGraph.Scale.MajorStepAuto"/> = true)</para>
            <para><see cref="P:ZedGraph.Scale.Mag"/> is set to a magnitude multiplier according to the data</para>
            <para><see cref="P:ZedGraph.Scale.Format"/> is set to the display format for the values (this controls the
            number of decimal places, whether there are thousands separators, currency types, etc.)</para>
            </remarks>
            <seealso cref="M:ZedGraph.Scale.PickScale(ZedGraph.GraphPane,System.Drawing.Graphics,System.Single)"/>
            <seealso cref="F:ZedGraph.AxisType.Exponent"/>
        </member>
        <member name="M:ZedGraph.ExponentScale.MakeLabel(ZedGraph.GraphPane,System.Int32,System.Double)">
            <summary>
            Make a value label for an <see cref="F:ZedGraph.AxisType.Exponent"/> <see cref="T:ZedGraph.Axis"/>.
            </summary>
            <param name="pane">
            A reference to the <see cref="T:ZedGraph.GraphPane"/> object that is the parent or
            owner of this object.
            </param>
            <param name="index">
            The zero-based, ordinal index of the label to be generated.  For example, a value of 2 would
            cause the third value label on the axis to be generated.
            </param>
            <param name="dVal">
            The numeric value associated with the label.  This value is ignored for log (<see cref="P:ZedGraph.Scale.IsLog"/>)
            and text (<see cref="P:ZedGraph.Scale.IsText"/>) type axes.
            </param>
            <returns>The resulting value label as a <see cref="T:System.String"/></returns>
        </member>
        <member name="M:ZedGraph.ExponentScale.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructor for deserializing objects
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data
            </param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data
            </param>
        </member>
        <member name="M:ZedGraph.ExponentScale.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance with the data needed to serialize the target object
            </summary>
            <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"/> instance that defines the serialized data</param>
            <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"/> instance that contains the serialized data</param>
        </member>
    </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Engineer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions