BEMSimpleLineGraph icon indicating copy to clipboard operation
BEMSimpleLineGraph copied to clipboard

Elegant Line Graphs for iOS. (Charting library)

Results 49 BEMSimpleLineGraph issues
Sort by recently updated
recently updated
newest added

The chart does not show long X-Axis when there are more than three points. It seems that this only occurs on iPhone 6 and above. | iPhone 5 | iPhone...

bug

graph.autoScaleYAxis = false func maxValue(forLineGraph graph: BEMSimpleLineGraphView) -> CGFloat { return 10000 } func minValue(forLineGraph graph: BEMSimpleLineGraphView) -> CGFloat { return 0 } The graph is not showing correctly. I...

bug

Hello, Is it possible to change the line's color if, let's say that the line crosses a upper and lower limit? Thanks

enhancement
new feature

A workaround hack: If I change line 157 in BEMLine.m from this: `if (!self.disableMainLine && self.bezierCurveIsEnabled) {` to this: `if (!self.disableMainLine && self.bezierCurveIsEnabled && self.points.count && self.bottomPointsArray.count && self.topPointsArray.count) {`...

bug
performance

![image](https://cloud.githubusercontent.com/assets/9722423/19805075/cdb52c72-9d44-11e6-9d76-3510bd7a92b0.png)

bug

When the value of an array of points as the Y axis can only display a value, can let it shows "- (NSInteger) numberOfYAxisLabelsOnLineGraph: (BEMSimpleLineGraphView *) graph" return value?

question

Are multiple lines (aka series) currently supported? Thanks!

new feature

As you can see in the attached image, the graph draws black. This only happens when you peek in to the notification center (scroll the notification center open, but hold...

bug

When i use BEMSimpleLineGraph in ScrollView. BEMSimpleLineGraph 's x-axis space between is auto with width and points count. but when my points counts is two. the x-axis space between is...

bug

I'm using this lib to graph data in realtime, appending new data as it arrives (Right To Left). After a while, all the data gets bunched up and hard to...

todo
new feature