| 96 | } |
| 97 | |
| 98 | static jint SetChartCoord(JNIEnv *env, jclass clazz, jlong chart, jstring config) { |
| 99 | std::string _config = JavaStringToString(env, config); |
| 100 | |
| 101 | xg::XChart *_chart = reinterpret_cast<xg::XChart *>(chart); |
| 102 | _chart->Coord(std::move(_config)); |
| 103 | F2_LOG_I(_chart->GetChartName(), "%s", "#SetChartCoord"); |
| 104 | return 0; |
| 105 | } |
| 106 | |
| 107 | static jint SetChartAnimate(JNIEnv *env, jclass clazz, jlong chart, jstring config) { |
| 108 | std::string _config = JavaStringToString(env, config); |
nothing calls this directly
no test coverage detected