Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add a switch whether to draw limit line's labels. default is true #887

Merged
merged 1 commit into from
May 22, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Charts/Classes/Components/ChartLimitLine.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public class ChartLimitLine: ChartComponentBase
public var valueTextColor = NSUIColor.blackColor()
public var valueFont = NSUIFont.systemFontOfSize(13.0)
public var label = ""
public var drawLabelEnabled = true
public var labelPosition = LabelPosition.RightTop

public override init()
Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Renderers/ChartXAxisRenderer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ public class ChartXAxisRenderer: ChartAxisRendererBase
let label = limitLine.label

// if drawing the limit-value label is enabled
if (label.characters.count > 0)
if (limitLine.drawLabelEnabled && label.characters.count > 0)
{
let labelLineHeight = limitLine.valueFont.lineHeight

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public class ChartXAxisRendererHorizontalBarChart: ChartXAxisRendererBarChart
let label = l.label

// if drawing the limit-value label is enabled
if (label.characters.count > 0)
if (l.drawLabelEnabled && label.characters.count > 0)
{
let labelLineHeight = l.valueFont.lineHeight

Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Renderers/ChartYAxisRenderer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public class ChartYAxisRenderer: ChartAxisRendererBase
let label = l.label

// if drawing the limit-value label is enabled
if (label.characters.count > 0)
if (l.drawLabelEnabled && label.characters.count > 0)
{
let labelLineHeight = l.valueFont.lineHeight

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public class ChartYAxisRendererHorizontalBarChart: ChartYAxisRenderer
let label = l.label

// if drawing the limit-value label is enabled
if (label.characters.count > 0)
if (l.drawLabelEnabled && label.characters.count > 0)
{
let labelLineHeight = l.valueFont.lineHeight

Expand Down