Uses of Interface
org.pepstock.charba.client.defaults.IsDefaultFont
-
Packages that use IsDefaultFont Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.annotation Contains all classes to activate theAnnotationPlugin.ID
plugin (AKAchartjs-plugin-annotation.js
) for CHART.js.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.datalabels Contains all classes to activate theDataLabelsPlugin.ID
plugin (AKAchartjs-plugin-datalabels.js
) for CHART.js.org.pepstock.charba.client.defaults Contains all interfaces need to provide defaults values of the chart options.org.pepstock.charba.client.defaults.chart Contains the default values of chart options based on type of chart instance.org.pepstock.charba.client.defaults.globals Contains the default values of chart options for all chart types (CHART.JS options defaults).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.org.pepstock.charba.client.labels Contains all classes to useLabelsPlugin.ID
plugin (AKAchartjs-plugin-labels.js
) available for CHART.JS.org.pepstock.charba.client.options Contains all elements to configure charts at global level (know as chart global options).org.pepstock.charba.client.utils Contains some utilities to use in Charba, like HTML annotation builder, and other java script utilities useful for debugging.org.pepstock.charba.client.utils.toast Contains all classes to useToaster
utility. -
-
Uses of IsDefaultFont in org.pepstock.charba.client
Methods in org.pepstock.charba.client with parameters of type IsDefaultFont Modifier and Type Method Description IsImmutableFont
Helpers. toFont(IsDefaultFont font)
Parses font options and returns a normalized font object.String
Helpers. toFontString(IsDefaultFont font)
Builds the font string (shorthand property of CSS font) to use in the canvas object.
See here CSS specification. -
Uses of IsDefaultFont in org.pepstock.charba.client.annotation
Classes in org.pepstock.charba.client.annotation that implement IsDefaultFont Modifier and Type Class Description class
Font
Base object to map font options forAnnotationPlugin.ID
plugin for label configuration. -
Uses of IsDefaultFont in org.pepstock.charba.client.callbacks
Methods in org.pepstock.charba.client.callbacks with parameters of type IsDefaultFont Modifier and Type Method Description static <C extends ChartContext>
FontItemScriptableUtil. getOptionValueAsFont(C context, Scriptable<FontItem,C> callback, IsDefaultFont defaultValue)
Returns the font item value as value of the property by invoking a callback which is typed to a font item. -
Uses of IsDefaultFont in org.pepstock.charba.client.configuration
Classes in org.pepstock.charba.client.configuration that implement IsDefaultFont Modifier and Type Class Description class
Font
Base object to map font configuration. -
Uses of IsDefaultFont in org.pepstock.charba.client.datalabels
Classes in org.pepstock.charba.client.datalabels that implement IsDefaultFont Modifier and Type Class Description class
Font
Base object to map font options forDataLabelsPlugin.ID
plugin configuration. -
Uses of IsDefaultFont in org.pepstock.charba.client.defaults
Methods in org.pepstock.charba.client.defaults that return IsDefaultFont Modifier and Type Method Description IsDefaultFont
IsDefaultTooltips. getBodyFont()
Returns the body line font.IsDefaultFont
IsDefaultFontContainer. getFont()
Returns the font element.IsDefaultFont
IsDefaultOptions. getFont()
Returns the font element.IsDefaultFont
IsDefaultTooltips. getFooterFont()
Returns the footer font.IsDefaultFont
IsDefaultTooltips. getTitleFont()
Returns the title font.Methods in org.pepstock.charba.client.defaults with parameters of type IsDefaultFont Modifier and Type Method Description default FontItem
IsDefaultFont. create(IsDefaultFont defaultValues)
Creates a font options instance using default or cloning current instance. -
Uses of IsDefaultFont in org.pepstock.charba.client.defaults.chart
Classes in org.pepstock.charba.client.defaults.chart that implement IsDefaultFont Modifier and Type Class Description class
DefaultChartFont
Defaults for font option element, based on chart type.Methods in org.pepstock.charba.client.defaults.chart that return IsDefaultFont Modifier and Type Method Description IsDefaultFont
DefaultChartTooltips. getBodyFont()
IsDefaultFont
DefaultChartLegendLabels. getFont()
IsDefaultFont
DefaultChartLegendTitle. getFont()
IsDefaultFont
DefaultChartPointLabels. getFont()
IsDefaultFont
DefaultChartScaleTitle. getFont()
IsDefaultFont
DefaultChartTicks. getFont()
IsDefaultFont
DefaultChartTooltips. getFooterFont()
IsDefaultFont
DefaultChartTooltips. getTitleFont()
Constructors in org.pepstock.charba.client.defaults.chart with parameters of type IsDefaultFont Constructor Description DefaultChartFont(IsDefaultFont font)
Creates the object by font option element instance. -
Uses of IsDefaultFont in org.pepstock.charba.client.defaults.globals
Classes in org.pepstock.charba.client.defaults.globals that implement IsDefaultFont Modifier and Type Class Description class
DefaultRoutedFont
CHART.JS default values for font items, defined inside to children element of defaults (i.e.Methods in org.pepstock.charba.client.defaults.globals that return IsDefaultFont Modifier and Type Method Description IsDefaultFont
DefaultTooltips. getBodyFont()
IsDefaultFont
AbstractDefaultOptions. getFont()
IsDefaultFont
DefaultLegendLabels. getFont()
IsDefaultFont
DefaultLegendTitle. getFont()
IsDefaultFont
DefaultPointLabels. getFont()
IsDefaultFont
DefaultScaleTitle. getFont()
IsDefaultFont
DefaultSubtitle. getFont()
IsDefaultFont
DefaultTicks. getFont()
IsDefaultFont
DefaultTitle. getFont()
IsDefaultFont
DefaultTooltips. getFooterFont()
IsDefaultFont
DefaultTooltips. getTitleFont()
-
Uses of IsDefaultFont in org.pepstock.charba.client.items
Classes in org.pepstock.charba.client.items that implement IsDefaultFont Modifier and Type Class Description class
FontItem
Font options item to use mainly for callbacks.Constructors in org.pepstock.charba.client.items with parameters of type IsDefaultFont Constructor Description FontItem(IsDefaultFont defaultValues)
Creates an empty font to use for chart configuration when the font is created by a callback. -
Uses of IsDefaultFont in org.pepstock.charba.client.labels
Classes in org.pepstock.charba.client.labels that implement IsDefaultFont Modifier and Type Class Description class
Font
Base object to map font options forLabelsPlugin.ID
plugin configuration. -
Uses of IsDefaultFont in org.pepstock.charba.client.options
Subinterfaces of IsDefaultFont in org.pepstock.charba.client.options Modifier and Type Interface Description interface
IsFont
Interface to map a font element.interface
IsImmutableFont
Interface to map a font element in read-only mode, normalized by CHART.JS byHelpers.toFont(org.pepstock.charba.client.items.FontItem)
, providing also the CSS string of font itself.Classes in org.pepstock.charba.client.options that implement IsDefaultFont Modifier and Type Class Description class
AbstractFont
Base class to map the font properties of an element.class
AbstractImmutableFont
Base class to map a font element in read-only mode, normalized by CHART.JS byHelpers.toFont(org.pepstock.charba.client.items.FontItem)
, providing also the CSS string of font itself.class
AbstractScriptableFont<T extends ChartContext>
Object can be provided with additional configuration by callbacks to define font options at runtime, and with the possibility to resetFontCallback
if theIsScriptableFontProvider
instance has been set with aFontCallback
.class
Font
Base object to map font options for configuration.Methods in org.pepstock.charba.client.options with parameters of type IsDefaultFont Modifier and Type Method Description FontItem
Font. create(IsDefaultFont defaultValues)
Constructors in org.pepstock.charba.client.options with parameters of type IsDefaultFont Constructor Description AbstractFont(AbstractNode parent, IsDefaultFont defaultValues, NativeObject nativeObject)
Creates a font to use for chart configuration, wrapping a native object instance.AbstractFont(IsDefaultFont defaultValues)
Creates an empty font to use for chart configuration.AbstractFont(IsDefaultFont defaultValues, NativeObject nativeObject)
Creates a font to use for chart configuration, wrapping a native object instance.AbstractScriptableFont(IsScriptableFontProvider<T> scriptableFontProvider, IsDefaultFont defaultValues)
Creates an empty font to use for chart configuration.AbstractScriptableFont(IsScriptableFontProvider<T> scriptableFontProvider, IsDefaultFont defaultValues, NativeObject nativeObject)
Creates a font to use for chart configuration, wrapping a native object instance. -
Uses of IsDefaultFont in org.pepstock.charba.client.utils
Methods in org.pepstock.charba.client.utils with parameters of type IsDefaultFont Modifier and Type Method Description MultilineTextAnnotationBuilder
MultilineTextAnnotationBuilder. setFonts(IsDefaultFont... fonts)
Sets the fonts to apply to each row of the content.
If the fonts are less than the content row count, the last font is used for the rest of the content.Method parameters in org.pepstock.charba.client.utils with type arguments of type IsDefaultFont Modifier and Type Method Description MultilineTextAnnotationBuilder
MultilineTextAnnotationBuilder. setFonts(List<IsDefaultFont> fonts)
Sets the fonts to apply to each row of the content.
If the fonts are less than the content row count, the last font is used for the rest of the content. -
Uses of IsDefaultFont in org.pepstock.charba.client.utils.toast
Methods in org.pepstock.charba.client.utils.toast that return IsDefaultFont Modifier and Type Method Description IsDefaultFont
ToastItemAction. getFont()
Returns the font element.
-