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