Skip to content

Commit

Permalink
Merge pull request #179 from Maxim-38RUS-Zabelin/master
Browse files Browse the repository at this point in the history
The line charts have started to properly display balloon markers
  • Loading branch information
danielgindi committed Jun 29, 2015
2 parents a00453f + ef91bd5 commit 24cda7e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Charts/Classes/Charts/BarLineChartViewBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1314,10 +1314,9 @@ public class BarLineChartViewBase: ChartViewBase, UIGestureRecognizerDelegate
{
var vals = [ChartSelectionDetail]();

var pt = CGPoint();

for (var i = 0, count = _data.dataSetCount; i < count; i++)
{
var pt = CGPoint();
var dataSet = _data.getDataSetByIndex(i);
if (dataSet === nil || !dataSet.isHighlightEnabled)
{
Expand Down

0 comments on commit 24cda7e

Please sign in to comment.