ComponentOne FinancialChart for WinForms
C1.Chart.Finance Namespace / FinancialChartType Enumeration

In This Topic
    FinancialChartType Enumeration
    In This Topic
    Specifies the type of financial chart.
    Syntax
    'Declaration
     
    
    Public Enum FinancialChartType 
       Inherits System.Enum
    public enum FinancialChartType : System.Enum 
    Members
    MemberDescription
    AreaShows line chart with area below the line filled with color.
    ArmsCandleVolumeCreated by Richard Arms, this chart is a combination of EquiVolume and CandleVolume chart types. The data for this chart type can be defined using the FinancialChart or FinancialSeries binding property as a comma separated value in the following format: "highProperty, lowProperty, openProperty, closeProperty, volumeProperty". This chart type can only be used at the FinancialChart level, and should not be applied on FinancialSeries objects. Only one set of volume data is currently supported per FinancialChart.
    CandlestickPresents items with high, low, open, and close values. The size of the wick line is determined by the High and Low values, while the size of the bar is determined by the Open and Close values. The bar is displayed using different colors, depending on whether the close value is higher or lower than the open value. The data for this chart type can be defined using the FinancialChart or FinancialSeries binding property as a comma separated value in the following format: "highProperty, lowProperty, openProperty, closeProperty".
    CandleVolumeIdentical to the standard Candlestick chart, except that the width of each bar is determined by Volume value. The data for this chart type can be defined using the FinancialChart or FinancialSeries binding property as a comma separated value in the following format: "highProperty, lowProperty, openProperty, closeProperty, volumeProperty". This chart type can only be used at the FinancialChart level, and should not be applied on FinancialSeries objects. Only one set of volume data is currently supported per FinancialChart.
    ColumnShows vertical bars and allows you to compare values of items across categories.
    ColumnVolumeIdentical to the standard Column chart, except that the width of each bar is determined by the Volume value. The data for this chart type can be defined using the FinancialChart or FinancialSeries binding property as a comma separated value in the following format: "yProperty, volumeProperty". This chart type can only be used at the FinancialChart level, and should not be applied on FinancialSeries objects. Only one set of volume data is currently supported per FinancialChart.
    EquiVolumeSimilar to the Candlestick chart, but shows the high and low values only. In addition, the width of each bar is determined by Volume value. The data for this chart type can be defined using the FinancialChart or FinancialSeries binding property as a comma separated value in the following format: "highProperty, lowProperty, openProperty, closeProperty, volumeProperty". This chart type can only be used at the FinancialChart level, and should not be applied on FinancialSeries objects. Only one set of volume data is currently supported per FinancialChart.
    HeikinAshiDerived from the candlestick chart and uses information from the current and prior period in order to filter out the noise. These charts cannot be combined with any other series objects. The data for this chart type can be defined using the FinancialChart or FinancialSeries binding property as a comma separated value in the following format: "highProperty, lowProperty, openProperty, closeProperty".
    HighLowOpenCloseDisplays the same information as a candlestick chart, except that opening values are displayed using lines to the left, while lines to the right indicate closing values. The data for this chart type can be defined using the FinancialChart or FinancialSeries binding property as a comma separated value in the following format: "highProperty, lowProperty, openProperty, closeProperty".
    KagiIgnores time and focuses on price action. These charts cannot be combined with any other series objects. The data for this chart type can be defined using the FinancialChart or FinancialSeries binding property as a comma separated value in the following format: "highProperty, lowProperty, openProperty, closeProperty".
    LineShows trends over a period of time or across categories.
    LineBreakFilters out noise by focusing exclusively on price changes. These charts cannot be combined with any other series objects. The data for this chart type can be defined using the FinancialChart or FinancialSeries binding property as a comma separated value in the following format: "highProperty, lowProperty, openProperty, closeProperty".
    LineSymbolsShows line chart with a symbol on each data point.
    PointAndFigurePoint and figure is a charting technique used in technical analysis. Point and figure charting does not plot price against time as time-based charts do. Instead it plots price against changes in direction by plotting a column of Xs as the price rises and a column of Os as the price falls. Point & figure charts consist of columns of X's and O's that represent filtered price movements. X-columns represent rising prices and O-columns represent falling prices. Each price box represents a specific value that price must reach to warrant an X or an O. Time is not a factor in P&F charting; these charts evolve as prices move. No movement in price means no change in the P&F chart.
    RenkoIgnores time and focuses on price changes that meet a specified amount. These charts cannot be combined with any other series objects. The data for this chart type can be defined using the FinancialChart or FinancialSeries binding property as a comma separated value in the following format: "highProperty, lowProperty, openProperty, closeProperty".
    ScatterUses X and Y coordinates to show patterns within the data.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Chart.Finance.FinancialChartType

    See Also