Search Results for

    Show / Hide Table of Contents

    Class ColorSymbolRotator

    Class used to get the next color/symbol for GraphPane.AddCurve methods.

    Inheritance
    Object
    ColorSymbolRotator
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: ZedGraph
    Assembly: ZedGraph.dll
    Syntax
    public class ColorSymbolRotator

    Fields

    | Improve this Doc View Source

    colorIndex

    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.

    Declaration
    protected int colorIndex
    Field Value
    Type Description
    Int32
    | Improve this Doc View Source

    COLORS

    The Colors ColorSymbolRotator rotates through.

    Declaration
    public static readonly Color[] COLORS
    Field Value
    Type Description
    Color[]
    | Improve this Doc View Source

    symbolIndex

    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.

    Declaration
    protected int symbolIndex
    Field Value
    Type Description
    Int32
    | Improve this Doc View Source

    SYMBOLS

    The SymbolTypes ColorSymbolRotator rotates through.

    Declaration
    public static readonly SymbolType[] SYMBOLS
    Field Value
    Type Description
    SymbolType[]

    Properties

    | Improve this Doc View Source

    NextColor

    Retrieves the next color in the rotation Calling this method has the side effect of incrementing the color index. NextSymbol NextColorIndex

    Declaration
    public Color NextColor { get; }
    Property Value
    Type Description
    Color
    | Improve this Doc View Source

    NextColorIndex

    Retrieves the index of the next color to be used. Calling this method has the side effect of incrementing the color index.

    Declaration
    public int NextColorIndex { get; set; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    NextSymbol

    Retrieves the next color in the rotation. Calling this method has the side effect of incrementing the symbol index. NextColor NextSymbolIndex

    Declaration
    public SymbolType NextSymbol { get; }
    Property Value
    Type Description
    SymbolType
    | Improve this Doc View Source

    NextSymbolIndex

    Retrieves the index of the next symbol to be used. Calling this method has the side effect of incrementing the symbol index.

    Declaration
    public int NextSymbolIndex { get; set; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    StaticInstance

    Retrieves the ColorSymbolRotator instance used by the static methods. StaticNextColor StaticNextSymbol

    Declaration
    public static ColorSymbolRotator StaticInstance { get; }
    Property Value
    Type Description
    ColorSymbolRotator
    | Improve this Doc View Source

    StaticNextColor

    Retrieves the next color from this class's static ColorSymbolRotator instance StaticInstance StaticNextSymbol

    Declaration
    public static Color StaticNextColor { get; }
    Property Value
    Type Description
    Color
    | Improve this Doc View Source

    StaticNextSymbol

    Retrieves the next symbol type from this class's static ColorSymbolRotator instance StaticInstance StaticNextColor

    Declaration
    public static SymbolType StaticNextSymbol { get; }
    Property Value
    Type Description
    SymbolType
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX