File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ All notable changes to this project will be documented in this file.
1919- Placement of BarSeries labels when stacked (#1979 )
2020- SystemInvalidException in LineSeries when only Double.Nan values are added (#1991 )
2121- Issue with tracking AreaSeries with monotonic data points (#1982 )
22+ - Incorrect coloring of TwoColorLineSeries
2223- HitTest when IsLegendVisible is false (#1975 )
2324- Font weight not being applied in ImageSharp (#2006 )
2425
Original file line number Diff line number Diff line change @@ -141,12 +141,12 @@ void RenderLine(OxyColor color)
141141
142142 using ( rc . AutoResetClip ( clippingRectLo ) )
143143 {
144- RenderLine ( this . ActualColor ) ;
144+ RenderLine ( this . ActualColor2 ) ;
145145 }
146146
147147 using ( rc . AutoResetClip ( clippingRectHi ) )
148148 {
149- RenderLine ( this . ActualColor2 ) ;
149+ RenderLine ( this . ActualColor ) ;
150150 }
151151 }
152152 }
You can’t perform that action at this time.
0 commit comments