toOptionsJSON method
Implementation
@override
void toOptionsJSON(StringBuffer buffer) {
super.toOptionsJSON(buffer);
if (afterBreaks != null) {
buffer.writeAll(['"afterBreaks":', afterBreaks?.toJSON(), ','], '');
}
if (afterSetExtremes != null) {
buffer.writeAll(
['"afterSetExtremes":', afterSetExtremes?.toJSON(), ','], '');
}
if (pointBreak != null) {
buffer.writeAll(['"pointBreak":', pointBreak?.toJSON(), ','], '');
}
if (pointBreakOut != null) {
buffer.writeAll(['"pointBreakOut":', pointBreakOut?.toJSON(), ','], '');
}
if (pointInBreak != null) {
buffer.writeAll(['"pointInBreak":', pointInBreak?.toJSON(), ','], '');
}
if (setExtremes != null) {
buffer.writeAll(['"setExtremes":', setExtremes?.toJSON(), ','], '');
}
}