SwiftChart Versions Save

Line and area chart library for iOS

1.0.0

6 years ago
  • Breaking change: Use Double instead of Float (#87 by @trein)
  • Added: Initialize a serie with Int x-values
  • Fixed: crash when using empty series data (#88 by @trein)

0.6.0

6 years ago
  • Add hideHighlightLineOnTouchEnd option

0.5.0

6 years ago
  • Automatically redraw the chart when changing series (#25 by @duemunk): no need to call setNeedsDisplay when changing chart's series 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 to false to print the last x-label (the last labe; may overflow the frame size, tough) (#37)

0.4.0

7 years ago
  • Add custom threshold for positive/negative data colors (#45 by @algrid)

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)

0.3.0

7 years ago

This release upgrades the source code and examples to Swift 3.

Breaking changes

  • Chart.addSeries(series: ChartSeries) method has been renamed to Chart.add(series: ChartSeries)

0.2.2

7 years ago
  • Fixes an issue with negative/positive values (#26)

0.2.1

8 years ago

Add the missing public initializer Chart(frame: CGFrame).

0.2.0

8 years ago

Updated to work with cocoapods.

0.1.0

8 years ago

First official release!