Table of Contents

TChartFrameOptions.TChartFrameOptions Constructor

Overloads

TChartFrameOptions.TChartFrameOptions(ChartLineOptions, ChartFillOptions, Boolean)

Creates a new TChartFrameOptions instance.

Syntax

Namespace: FlexCel.Core

public TChartFrameOptions(ChartLineOptions aLineOptions, ChartFillOptions aFillOptions, Boolean aRoundedCorners)

Parameters

<-> Parameter Type Description
aLineOptions ChartLineOptions See LineOptions
aFillOptions ChartFillOptions See FillOptions
aRoundedCorners Boolean See RoundedCorners

See also

TChartFrameOptions.TChartFrameOptions(Nullable<TDrawingColor>, Nullable<Int32>, Nullable<TDrawingColor>, Boolean)

This is a convenience constructor to easily create the most common options which are a solid fill and line.

Syntax

Namespace: FlexCel.Core

public TChartFrameOptions(Nullable<TDrawingColor> aLineColor, Nullable<Int32> aLineWidth, Nullable<TDrawingColor> aFillColor, Boolean aRoundedCorners)

Parameters

<-> Parameter Type Description
aLineColor Nullable<TDrawingColor> Color for the line. If null, no line will be used.
aLineWidth Nullable<Int32> Width of the line in EMUs (1 pt = 12700 EMUs). If null, width of the theme will be used.
aFillColor Nullable<TDrawingColor> Color for the fill. If null, no fill will be used.
aRoundedCorners Boolean

See also