| 254 | } |
| 255 | |
| 256 | static jint ChartClear(JNIEnv *env, jclass clazz, jlong chart) { |
| 257 | xg::XChart *_chart = reinterpret_cast<xg::XChart *>(chart); |
| 258 | F2_LOG_I(_chart->GetChartName(), "%s", "#clear"); |
| 259 | _chart->Clear(); |
| 260 | return 0; |
| 261 | } |
| 262 | |
| 263 | static jint SetChartGeomPosition(JNIEnv *env, jclass clazz, jlong geom, jstring type, jstring fields) { |
| 264 | xg::geom::AbstractGeom *_geom = reinterpret_cast<xg::geom::AbstractGeom *>(geom); |