Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgindi committed Mar 17, 2016
1 parent c9e132c commit 4b55542
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,13 @@ public class RadarChartDataSet: LineRadarChartDataSet, IRadarChartDataSet
/// - default: false
public var drawHighlightCircleEnabled: Bool = false

/// - returns: true if highlight circle should be drawn, false if not
public var isDrawHighlightCircleEnabled: Bool { return drawHighlightCircleEnabled }

public var highlightCircleFillColor: UIColor? = UIColor.whiteColor()

/// The stroke color for highlight circle.
/// If `nil`, the the color of the dataset is taken.
/// If `nil`, the color of the dataset is taken.
public var highlightCircleStrokeColor: UIColor?

public var highlightCircleStrokeAlpha: CGFloat = 0.3
Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Data/Interfaces/IRadarChartDataSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public protocol IRadarChartDataSet: ILineRadarChartDataSet
var highlightCircleFillColor: UIColor? { get set }

/// The stroke color for highlight circle.
/// If `nil`, the the color of the dataset is taken.
/// If `nil`, the color of the dataset is taken.
var highlightCircleStrokeColor: UIColor? { get set }

var highlightCircleStrokeAlpha: CGFloat { get set }
Expand Down
3 changes: 2 additions & 1 deletion ChartsRealm/Classes/Data/RealmRadarDataSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,13 @@ public class RealmRadarDataSet: RealmLineRadarDataSet, IRadarChartDataSet
/// - default: false
public var drawHighlightCircleEnabled: Bool = false

/// - returns: true if highlight circle should be drawn, false if not
public var isDrawHighlightCircleEnabled: Bool { return drawHighlightCircleEnabled }

public var highlightCircleFillColor: UIColor? = UIColor.whiteColor()

/// The stroke color for highlight circle.
/// If `nil`, the the color of the dataset is taken.
/// If `nil`, the color of the dataset is taken.
public var highlightCircleStrokeColor: UIColor?

public var highlightCircleStrokeAlpha: CGFloat = 0.3
Expand Down

0 comments on commit 4b55542

Please sign in to comment.