setOnCursor method
Implementation
VlChart setOnCursor(String key, VlJson value) {
if ( cursor.length == 0 ) {
this.error("a channel property was set before any channel was named");
return this;
}
VlJson ch = enc._get(cursor);
ch.setMember(key, value);
return this;
}