Skip to content

Commit 85dd07d

Browse files
authored
Remove unused LabelColor property (#2030) (#2031)
1 parent 88bfe5f commit 85dd07d

File tree

4 files changed

+1
-8
lines changed

4 files changed

+1
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ All notable changes to this project will be documented in this file.
2626

2727
### Removed
2828
- Support for .NET Framework 4.0 and 4.5 (#1839)
29+
- Unused LabelColor property from TornadoBarSeries, IntervalBarSeries, and RectangleBarSeries (#2030)
2930

3031
### Fixed
3132
- Placement of BarSeries labels when stacked (#1979)

Source/OxyPlot/Series/BarSeries/IntervalBarSeries.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ public class IntervalBarSeries : BarSeriesBase<IntervalBarItem>, IStackableSerie
3232
/// </summary>
3333
public IntervalBarSeries()
3434
{
35-
this.LabelColor = OxyColors.Automatic;
3635
this.FillColor = OxyColors.Automatic;
3736
this.StrokeThickness = 1;
3837

Source/OxyPlot/Series/BarSeries/RectangleBarSeries.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public RectangleBarSeries()
3535
this.Items = new List<RectangleBarItem>();
3636

3737
this.FillColor = OxyColors.Automatic;
38-
this.LabelColor = OxyColors.Automatic;
3938
this.StrokeColor = OxyColors.Black;
4039
this.StrokeThickness = 1;
4140

@@ -67,11 +66,6 @@ public OxyColor ActualFillColor
6766
/// </summary>
6867
public IList<RectangleBarItem> Items { get; private set; }
6968

70-
/// <summary>
71-
/// Gets or sets the label color.
72-
/// </summary>
73-
public OxyColor LabelColor { get; set; }
74-
7569
/// <summary>
7670
/// Gets or sets the format string for the labels.
7771
/// </summary>

Source/OxyPlot/Series/BarSeries/TornadoBarSeries.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ public TornadoBarSeries()
4141
this.MaximumFillColor = OxyColor.FromRgb(216, 82, 85);
4242
this.MinimumFillColor = OxyColor.FromRgb(84, 138, 209);
4343

44-
this.LabelColor = OxyColors.Automatic;
4544
this.StrokeColor = OxyColors.Black;
4645
this.StrokeThickness = 1;
4746

0 commit comments

Comments
 (0)