You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there!
I am working with CombinedChartView at the moment and got some issue when marked attached
I've cloned current master repo (latest commit f48fbfc ) and edit CombinedChartViewController.m at ChartsDemo to make this issue reproducible. Please, edit setChartData like below:
Hi there!
I am working with CombinedChartView at the moment and got some issue when marked attached
I've cloned current master repo (latest commit f48fbfc ) and edit CombinedChartViewController.m at ChartsDemo to make this issue reproducible. Please, edit setChartData like below:
- (void)setChartData
{
CombinedChartData *data = [[CombinedChartData alloc] initWithXVals:months];
data.lineData = [self generateLineData];
data.barData = [self generateBarData];
data.bubbleData = [self generateBubbleData];
//data.scatterData = [self generateScatterData];
//data.candleData = [self generateCandleData];
_chartView.data = data;
_chartView.marker = [[ChartMarker alloc] init];
[_chartView highlightValueWithXIndex:(ITEM_COUNT - 1) dataSetIndex:0 callDelegate:NO];
}
Here is stack trace from XCode:
The text was updated successfully, but these errors were encountered: