| 105 | } |
| 106 | |
| 107 | static jint SetChartAnimate(JNIEnv *env, jclass clazz, jlong chart, jstring config) { |
| 108 | std::string _config = JavaStringToString(env, config); |
| 109 | |
| 110 | xg::XChart *_chart = reinterpret_cast<xg::XChart *>(chart); |
| 111 | _chart->Animate(std::move(_config)); |
| 112 | F2_LOG_I(_chart->GetChartName(), "%s", "#SetChartAnimate"); |
| 113 | return 0; |
| 114 | } |
| 115 | |
| 116 | static jint SetChartInteraction(JNIEnv *env, jclass clazz, jlong chart, jstring type, jstring config) { |
| 117 | std::string _type = JavaStringToString(env, type); |
nothing calls this directly
no test coverage detected