IBubbleChartDataSet.swift 671 B

12345678910111213141516171819202122232425262728
  1. //
  2. // IBubbleChartDataSet.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. import CoreGraphics
  13. @objc
  14. public protocol IBubbleChartDataSet: IBarLineScatterCandleBubbleChartDataSet
  15. {
  16. // MARK: - Data functions and accessors
  17. var maxSize: CGFloat { get }
  18. var isNormalizeSizeEnabled: Bool { get }
  19. // MARK: - Styling functions and accessors
  20. /// Sets/gets the width of the circle that surrounds the bubble when highlighted
  21. var highlightCircleWidth: CGFloat { get set }
  22. }