| 86 | } |
| 87 | |
| 88 | static jint SetChartAxis(JNIEnv *env, jclass clazz, jlong chart, jstring field, jstring config) { |
| 89 | std::string _field = JavaStringToString(env, field); |
| 90 | std::string _config = JavaStringToString(env, config); |
| 91 | |
| 92 | xg::XChart *_chart = reinterpret_cast<xg::XChart *>(chart); |
| 93 | _chart->Axis(std::move(_field), std::move(_config)); |
| 94 | F2_LOG_I(_chart->GetChartName(), "%s", "#SetChartAxis"); |
| 95 | return 0; |
| 96 | } |
| 97 | |
| 98 | static jint SetChartCoord(JNIEnv *env, jclass clazz, jlong chart, jstring config) { |
| 99 | std::string _config = JavaStringToString(env, config); |
nothing calls this directly
no test coverage detected