Uses of Interface
org.pepstock.charba.client.dom.safehtml.SafeHtml
-
Packages that use SafeHtml Package Description org.pepstock.charba.client.callbacks All callbacks interfaces to be implemented, also to use the scriptable options of CHART.JS.org.pepstock.charba.client.configuration Contains all elements to configure a chart instance (know as chart options at instance level).org.pepstock.charba.client.dom.safehtml Contains the classes to use in order to create HTML encoded strings.org.pepstock.charba.client.items Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or controllers. -
-
Uses of SafeHtml in org.pepstock.charba.client.callbacks
Methods in org.pepstock.charba.client.callbacks that return SafeHtml Modifier and Type Method Description SafeHtml
HtmlLegendCallback. generateText(IsChart chart, T item, String currentText)
Returns a text of legend for a specific item or legend's title, as HTML -
Uses of SafeHtml in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return SafeHtml Modifier and Type Method Description SafeHtml
LegendTitle. getTextAsHtml()
Returns the text that will be displayed, as HTML.
If is not HTML, returnsUndefined.STRING
.Methods in org.pepstock.charba.client.configuration with parameters of type SafeHtml Modifier and Type Method Description void
LegendTitle. setText(SafeHtml text)
Sets the text that will be displayed, as HTML.
This field is used ONLY byHtmlLegend
plugin and not by CHART.js. -
Uses of SafeHtml in org.pepstock.charba.client.dom.safehtml
Fields in org.pepstock.charba.client.dom.safehtml declared as SafeHtml Modifier and Type Field Description static SafeHtml
SafeHtmlBuilder. EMPTY_SAFE_HTML
Default emptySafeHtml
.Methods in org.pepstock.charba.client.dom.safehtml that return SafeHtml Modifier and Type Method Description SafeHtml
SafeHtmlBuilder. toSafeHtml()
Returns the safe html instance.Methods in org.pepstock.charba.client.dom.safehtml with parameters of type SafeHtml Modifier and Type Method Description SafeHtmlBuilder
SafeHtmlBuilder. append(SafeHtml value)
Appends the contents of another safe html object. -
Uses of SafeHtml in org.pepstock.charba.client.items
Methods in org.pepstock.charba.client.items that return SafeHtml Modifier and Type Method Description default SafeHtml
HasLegendText. getTextAsHtml()
Returns the label that will be displayed, as HTML.
If is not HTML, returnsUndefined.STRING
.Methods in org.pepstock.charba.client.items with parameters of type SafeHtml Modifier and Type Method Description default void
HasLegendText. setText(SafeHtml text)
Sets the label that will be displayed, as HTML.
This field is used ONLY byHtmlLegend
plugin and not by CHART.js.
-