namespace Spectre.Console { /// /// Represents a breakdown chart item. /// public interface IBreakdownChartItem { /// /// Gets the item label. /// string Label { get; } /// /// Gets the item value. /// double Value { get; } /// /// Gets the item color. /// Color Color { get; } } }