1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// IRadarChartDataSet.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 IRadarChartDataSet: ILineRadarChartDataSet
{
// MARK: - Data functions and accessors
// MARK: - Styling functions and accessors
/// flag indicating whether highlight circle should be drawn or not
var drawHighlightCircleEnabled: Bool { get set }
var isDrawHighlightCircleEnabled: Bool { get }
var highlightCircleFillColor: NSUIColor? { get set }
/// The stroke color for highlight circle.
/// If `nil`, the color of the dataset is taken.
var highlightCircleStrokeColor: NSUIColor? { get set }
var highlightCircleStrokeAlpha: CGFloat { get set }
var highlightCircleInnerRadius: CGFloat { get set }
var highlightCircleOuterRadius: CGFloat { get set }
var highlightCircleStrokeWidth: CGFloat { get set }
}