[]
Gets or sets the Color value for this format color item.
Use this property to read the current Color value from an IFormatColor object obtained from a formatting API such as AxisColor, BarColor, FormatColor, or Color.
Color Color { get; set; }
Property Color As Color
worksheet.Range["A1:A3"].Value = new object[,] {{-10}, {0}, {20}};
IDataBar dataBar = worksheet.Range["A1:A3"].FormatConditions.AddDatabar();
IFormatColor axisColor = dataBar.AxisColor;
Color color = axisColor.Color;