| 221 | } |
| 222 | |
| 223 | static jstring GetChartScaleTicks(JNIEnv *env, jclass clazz, jlong chart, jstring field) { |
| 224 | xg::XChart *_chart = reinterpret_cast<xg::XChart *>(chart); |
| 225 | std::string _field = JavaStringToString(env, field); |
| 226 | std::string ticks = _chart->GetScaleTicks(_field); |
| 227 | return env->NewStringUTF(ticks.data()); |
| 228 | } |
| 229 | |
| 230 | static jint DestroyChart(JNIEnv *env, jclass clazz, jlong chart) { |
| 231 | xg::XChart *_chart = reinterpret_cast<xg::XChart *>(chart); |
nothing calls this directly
no test coverage detected