ArthurGuibert/FSLineChart

Cannot change axis

fulldecent opened this issue · 2 comments

Changing chart parameters is not possible after adding chart data. A workaround is this hack which resets the whole chart:

FSLineChart *newChart = [[FSLineChart alloc] initWithFrame:self.lineChartFull.frame];
[self.lineChartFull removeFromSuperview];
[self.view addSubview:newChart];
self.lineChartFull = newChart;

@ArthurGuibert To be clear, are you still accepting contributions to this project?? If so would a PR that fixes this be in scope to be merged?

Closing as project is not active