| 12345678910111213141516171819202122232425262728 |
- //
- // IBubbleChartDataSet.swift
- // Charts
- //
- // Copyright 2015 Daniel Cohen Gindi & Philipp Jahoda
- // A port of MPAndroidChart for iOS
- // Licensed under Apache License 2.0
- //
- // https://github.com/danielgindi/Charts
- //
- import Foundation
- import CoreGraphics
- @objc
- public protocol IBubbleChartDataSet: IBarLineScatterCandleBubbleChartDataSet
- {
- // MARK: - Data functions and accessors
-
- var maxSize: CGFloat { get }
- var isNormalizeSizeEnabled: Bool { get }
-
- // MARK: - Styling functions and accessors
-
- /// Sets/gets the width of the circle that surrounds the bubble when highlighted
- var highlightCircleWidth: CGFloat { get set }
- }
|