對不起,我英文很差。我想通過圖表繪製一些線條,而不是線形圖表,怎麼辦?
這是我對我的問題的描述。
我想畫一些圖表(https://github.com/danielgindi/Charts)。我有關於線路的信息。
例如:
@interface Line : NSObject
@property (assign, nonatomic) float x1;//x of the first point
@property (assign, nonatomic) float x2;//x of the second point
@property (assign, nonatomic) float y1;//y of the first point
@property (assign, nonatomic) float y2;//y of the second point
-(instancetype)initWithX1:(float)x1 withY1:(float)y1 withX2:(float)x2 withY2:(float)y2;
@end
我把線的對象到陣列,然後我要畫它。
我該如何實現這個功能?
嘗試圖表視圖後增加透明視圖和執行** drawInRect:**上這個觀點。 – Sergey
@Sergey你能提供更多的信息給我嗎?方法drawInRect的哪個類:屬於? –
你看過圖表演示嗎? – Koen