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
I have a CandleStickChart and a BarChart below it. When I make CandleStickChart zoom in or out or translate, I want BarChart do the same action.
Do you have a solution about this?
I have a CandleStickChart and a BarChart below it. When I make CandleStickChart zoom in or out or translate, I want BarChart do the same action.
Do you have a solution about this?
(void)chartScaled:(ChartViewBase * __nonnull)chartView scaleX:(CGFloat)scaleX scaleY:(CGFloat)scaleY
{
NSLog(@"1:scaleX:%f_____scaleY:%f",scaleX,scaleY);
if (chartView.tag == 100) {
}
if (chartView.tag == 200) {
[_day_Candle_chartView setVisibleXRangeMinimum:5];
}
}
The text was updated successfully, but these errors were encountered: