| 123 | } |
| 124 | |
| 125 | static jint SetChartToolTip(JNIEnv *env, jclass clazz, jlong chart, jstring config) { |
| 126 | std::string _config = JavaStringToString(env, config); |
| 127 | |
| 128 | xg::XChart *_chart = reinterpret_cast<xg::XChart *>(chart); |
| 129 | _chart->Tooltip(std::move(_config)); |
| 130 | return 0; |
| 131 | } |
| 132 | |
| 133 | static jint SetChartLegend(JNIEnv *env, jclass clazz, jlong chart, jstring field, jstring config) { |
| 134 | std::string _field = JavaStringToString(env, field); |
nothing calls this directly
no test coverage detected