BEMSimpleLineGraph
BEMSimpleLineGraph copied to clipboard
Elegant Line Graphs for iOS. (Charting library)
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...
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...
Hello, Is it possible to change the line's color if, let's say that the line crosses a upper and lower limit? Thanks
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) {`...

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?
Are multiple lines (aka series) currently supported? Thanks!
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...
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...
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...