Edit

Share via


Excel.Interfaces.ChartLineFormatData interface

An interface describing the data returned by calling chartLineFormat.toJSON().

Properties

color

HTML color code representing the color of lines in the chart.

lineStyle

Represents the line style. See Excel.ChartLineStyle for details.

weight

Represents weight of the line, in points.

Property Details

color

HTML color code representing the color of lines in the chart.

TypeScript
color?: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.1 ]

lineStyle

Represents the line style. See Excel.ChartLineStyle for details.

TypeScript
lineStyle?: Excel.ChartLineStyle | "None" | "Continuous" | "Dash" | "DashDot" | "DashDotDot" | "Dot" | "Grey25" | "Grey50" | "Grey75" | "Automatic" | "RoundDot";

Property Value

Excel.ChartLineStyle | "None" | "Continuous" | "Dash" | "DashDot" | "DashDotDot" | "Dot" | "Grey25" | "Grey50" | "Grey75" | "Automatic" | "RoundDot"

Remarks

[ API set: ExcelApi 1.7 ]

weight

Represents weight of the line, in points.

TypeScript
weight?: number;

Property Value

number

Remarks

[ API set: ExcelApi 1.7 ]