Class ExcelStandardChartWithLines
- Namespace
- OfficeOpenXml.Drawing.Chart
- Assembly
- EPPlus.dll
Base class for standard charts with line properties.
public abstract class ExcelStandardChartWithLines : ExcelChartStandard, IDisposable, IDrawingDataLabel
- Inheritance
-
ExcelStandardChartWithLines
- Implements
- Derived
- Inherited Members
Properties
DataLabel
Access to datalabel properties
public ExcelChartDataLabel DataLabel { get; }
Property Value
DownBar
Format the down bars on the chart
public ExcelChartStyleItem DownBar { get; }
Property Value
DropLine
Format the drop lines for the series.
public ExcelChartStyleItem DropLine { get; }
Property Value
HasDataLabel
If the chart has datalabel
public bool HasDataLabel { get; }
Property Value
HighLowLine
Format the high-low lines for the series.
public ExcelChartStyleItem HighLowLine { get; }
Property Value
Marker
If the series has markers
public bool Marker { get; set; }
Property Value
Series
The series for the chart
public ExcelChartSeries<ExcelLineChartSerie> Series { get; }
Property Value
Smooth
If the series has smooth lines
public bool Smooth { get; set; }
Property Value
UpBar
Format the up bars on the chart
public ExcelChartStyleItem UpBar { get; }
Property Value
UpDownBarGapWidth
The gap width between the up and down bars
public double? UpDownBarGapWidth { get; set; }
Property Value
Methods
AddDropLines()
Adds droplines to the chart.
public ExcelChartStyleItem AddDropLines()
Returns
AddHighLowLines()
Adds High-Low lines to the chart.
public ExcelChartStyleItem AddHighLowLines()
Returns
AddUpDownBars(bool, bool)
Adds up and/or down bars to the chart.
public void AddUpDownBars(bool upBars = true, bool downBars = true)