Releases: gpbl/SwiftChart
Releases · gpbl/SwiftChart
v1.0.0
v0.6.0
v0.5.0
- Automatically redraw the chart when changing series (#25 by @duemunk): no need to call
setNeedsDisplay
when changing chart'sseries
property - Update chart on resize (#24 by @duemunk)
- Add
xLabelsOrientation
option to switch the x-labels orientation between horizontal or vertical (#61) - Add
xLabelsSkipLast
option. Set it tofalse
to print the last x-label (the last labe; may overflow the frame size, tough) (#37)
v0.4.0
This is a potentially breaking change
If you were setting the ChartSeries.colors
, you must set the new zeroLevel
value to 0
to keep the same functionality:
- mySeriesl.colors = (above: ChartsColors.redColor(), below: ChartsColors.blueColor())
+ mySeriesl.colors = (above: ChartsColors.redColor(), below: ChartsColors.blueColor(), 0)