-
-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CandleChart In CombinedChartView not work #3567
Comments
I test my side In Objective-C Demo and swift Demo, CandleChart can not work
// data.lineData = generateLineData()
why? |
I found the problem. Fixed this place. @objc open func drawDataSet(context: CGContext, dataSet: ICandleChartDataSet)
|
Hello, I change according to your prompt, but error, can you provide the original code, thank you very much |
你好,这是demo中的问题,我发现release里没有问题。
在demo测试代码的时候CandleStickChartView会不显示
| |
Sum123
|
|
18612254512@163.com
|
签名由网易邮箱大师定制
On 09/24/2018 09:46,sharks-cha<notifications@github.com> wrote:
I found the problem. Fixed this place.
@objc open func drawDataSet(context: CGContext, dataSet: ICandleChartDataSet)
{
guard let dataProvider = dataProvider else {
return;
}
if !(dataProvider is CombinedChartView || dataProvider is CandleStickChartView) {
return;
}
...
}
Hello, I change according to your prompt, but error, can you provide the original code, thank you very much
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
|
I also met the problem in last release version. When I copied the combinedChart code in iOS swift demo to a new project, all the charts displayed well except the candleChart. I found that the CocoaPods install version is different from the demo one. |
+1 I have same error using the last release, rollback to 3.0.3 fix the issue |
In Objective-C Demo, CandleChart can not work
The text was updated successfully, but these errors were encountered: