| 114 | } |
| 115 | |
| 116 | static jint SetChartInteraction(JNIEnv *env, jclass clazz, jlong chart, jstring type, jstring config) { |
| 117 | std::string _type = JavaStringToString(env, type); |
| 118 | std::string _config = JavaStringToString(env, config); |
| 119 | |
| 120 | xg::XChart *_chart = reinterpret_cast<xg::XChart *>(chart); |
| 121 | _chart->Interaction(_type, _config); |
| 122 | return 0; |
| 123 | } |
| 124 | |
| 125 | static jint SetChartToolTip(JNIEnv *env, jclass clazz, jlong chart, jstring config) { |
| 126 | std::string _config = JavaStringToString(env, config); |
nothing calls this directly
no test coverage detected