Interface GenericHcObject
- All Known Subinterfaces:
CommonHighchartBuilder
,CustomHighchartBuilder
,HcAxis
,HcChart
,HcCredits
,HcExporting
,HcLegend
,HcMarker
,HcOptions3d
,HcPieDataLabels
,HcPiePlotOptions
,HcPlotOptions
,HcSerie
,HcSerieDataObject
,HcSeriesDataLabels
,HcSeriesPlotOptions
,HcTooltip
,HighchartBuilder
public interface GenericHcObject
- Since:
- 3.9.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addCustomStringAttribute
(String name, String value) Adds a custom string attribute.void
addRawAttribute
(String name, String value) Adds raw attribute to the object.
Value will NOT wrapped to quotes and will NOT be escaped.
It is required for defining some piece of JavaScript inside of JSON.
-
Method Details
-
addRawAttribute
Adds raw attribute to the object.
Value will NOT wrapped to quotes and will NOT be escaped.
It is required for defining some piece of JavaScript inside of JSON.- Parameters:
name
- name of attributevalue
- value of attribute
-
addCustomStringAttribute
Adds a custom string attribute. Value will be escaped as other string values.
It is required for defining some custom string fields inside of JSON.- Parameters:
name
- name of attributevalue
- string value of attribute- Since:
- 3.9.2
-