diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e5ef5819..ccbdb339e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ All notable changes to this project will be documented in this file. ### Removed - Support for .NET Framework 4.0 and 4.5 (#1839) +- Unused LabelColor property from TornadoBarSeries, IntervalBarSeries, and RectangleBarSeries (#2030) ### Fixed - Placement of BarSeries labels when stacked (#1979) diff --git a/Source/OxyPlot/Series/BarSeries/IntervalBarSeries.cs b/Source/OxyPlot/Series/BarSeries/IntervalBarSeries.cs index 3d18867c6..0cf79571f 100644 --- a/Source/OxyPlot/Series/BarSeries/IntervalBarSeries.cs +++ b/Source/OxyPlot/Series/BarSeries/IntervalBarSeries.cs @@ -32,7 +32,6 @@ public class IntervalBarSeries : BarSeriesBase, IStackableSerie /// public IntervalBarSeries() { - this.LabelColor = OxyColors.Automatic; this.FillColor = OxyColors.Automatic; this.StrokeThickness = 1; diff --git a/Source/OxyPlot/Series/BarSeries/RectangleBarSeries.cs b/Source/OxyPlot/Series/BarSeries/RectangleBarSeries.cs index 48fd1f79f..3df7e9862 100644 --- a/Source/OxyPlot/Series/BarSeries/RectangleBarSeries.cs +++ b/Source/OxyPlot/Series/BarSeries/RectangleBarSeries.cs @@ -35,7 +35,6 @@ public RectangleBarSeries() this.Items = new List(); this.FillColor = OxyColors.Automatic; - this.LabelColor = OxyColors.Automatic; this.StrokeColor = OxyColors.Black; this.StrokeThickness = 1; @@ -67,11 +66,6 @@ public OxyColor ActualFillColor /// public IList Items { get; private set; } - /// - /// Gets or sets the label color. - /// - public OxyColor LabelColor { get; set; } - /// /// Gets or sets the format string for the labels. /// diff --git a/Source/OxyPlot/Series/BarSeries/TornadoBarSeries.cs b/Source/OxyPlot/Series/BarSeries/TornadoBarSeries.cs index bf9a4d119..6e18ce3e0 100644 --- a/Source/OxyPlot/Series/BarSeries/TornadoBarSeries.cs +++ b/Source/OxyPlot/Series/BarSeries/TornadoBarSeries.cs @@ -41,7 +41,6 @@ public TornadoBarSeries() this.MaximumFillColor = OxyColor.FromRgb(216, 82, 85); this.MinimumFillColor = OxyColor.FromRgb(84, 138, 209); - this.LabelColor = OxyColors.Automatic; this.StrokeColor = OxyColors.Black; this.StrokeThickness = 1;