Giampaolo Bellavite
Giampaolo Bellavite
Hi @kevinlieser, [nope](https://github.com/gpbl/SwiftChart/blob/master/Source/Chart.swift#L24-L30): _the user will "finish" touching the chart only swiping left/right outside the chart_. I honestly don't remember why I needed it working this way :sweat_smile:
You are right, the name is wrong :smile: It shouldn't be hard to implement a `didEndTouchingChart`, let me try first.
Great thanks! I won't change however the behavior of that method for backward compatibility, so I'd prefer to add a new delegate method.
Removing the highlight line may be a undesired behavior. Say, for example, the user wants to display something related to the highlighted value: removing the highlight line would hide the...
Nope, not yet!
This is a good idea. Should the "subdivisions" have a different appearance from the main horizontal lines? BTW do you know if in the charts-jargon, "subdivision" is the correct name?...
Awesome! Adding this feature soon.
@nehayward awesome – is something we can add to this lib? Or would a fork work better?
@isgarlo thanks for sharing your idea! Could you send a screenshot explaining better this feature? I'm not sure I understand what you mean.
Sure, use the [`ChartSeries.colors`](https://github.com/gpbl/SwiftChart#chartseries-class) option. E.g. ``` swift let series = ChartSeries([0, 6, 2, 8, 4, 7, 3, 10, 8]) series.colors = (above: ChartsColors.redColor(), below: ChartsColors.blueColor()) ```