LineChartData.swift 651 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // LineChartData.swift
  3. // Charts
  4. //
  5. // Copyright 2015 Daniel Cohen Gindi & Philipp Jahoda
  6. // A port of MPAndroidChart for iOS
  7. // Licensed under Apache License 2.0
  8. //
  9. // https://github.com/danielgindi/Charts
  10. //
  11. import Foundation
  12. /// Data object that encapsulates all data associated with a LineChart.
  13. open class LineChartData: ChartData
  14. {
  15. public required init()
  16. {
  17. super.init()
  18. }
  19. public override init(dataSets: [ChartDataSetProtocol])
  20. {
  21. super.init(dataSets: dataSets)
  22. }
  23. public required init(arrayLiteral elements: ChartDataSetProtocol...)
  24. {
  25. super.init(dataSets: elements)
  26. }
  27. }