Uses of Interface
org.pepstock.charba.client.commons.NativeObjectContainerFactory
-
Packages that use NativeObjectContainerFactory Package Description org.pepstock.charba.client.adapters Contains all classes to interact with date adapters implemented by CHART.JS to be abstract from date time java script library to use.org.pepstock.charba.client.callbacks All callbacks interfaces to be implemented, also to use the scriptable options of CHART.JS.org.pepstock.charba.client.commons Core classes to manage the inter-operations with java script code.org.pepstock.charba.client.controllers Contains all classes to manage the implementations of controllers.org.pepstock.charba.client.data Contains all elements to configure the datasets of a chart instance (know as chart data at instance level).org.pepstock.charba.client.geo Contains all classes to activate the GEO controllers (AKAchartjs-chart-geo.js
) for CHART.js.org.pepstock.charba.client.intl Contains classes in order to use the ECMAScript Internationalization API, which provides language sensitive number formatting, and date and time formatting.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.sankey Contains all classes to activate the Sankey controller (AKAchartjs-chart-sankey.js
) for CHART.js.org.pepstock.charba.client.treemap Contains all classes to activate the TreeMap controller (AKAchartjs-chart-treemap.js
) for CHART.js.org.pepstock.charba.client.utils Contains some utilities to use in Charba, like HTML annotation builder, and other java script utilities useful for debugging. -
-
Uses of NativeObjectContainerFactory in org.pepstock.charba.client.adapters
Classes in org.pepstock.charba.client.adapters that implement NativeObjectContainerFactory Modifier and Type Class Description static class
DateAdapterOptions.DateAdaptersOptionsFactory
Date adapter options factory for LUXON option.
It should be use to get stored LUXON options from global, chart options and configurations. -
Uses of NativeObjectContainerFactory in org.pepstock.charba.client.callbacks
Methods in org.pepstock.charba.client.callbacks with parameters of type NativeObjectContainerFactory Modifier and Type Method Description <T extends NativeObjectContainer>
TChartContext. getAttributes(NativeObjectContainerFactory<T> factory)
Returns the attributes, if exist. -
Uses of NativeObjectContainerFactory in org.pepstock.charba.client.commons
Methods in org.pepstock.charba.client.commons with parameters of type NativeObjectContainerFactory Modifier and Type Method Description static <E extends NativeObjectContainer>
ArrayObjectContainerList<E>ArrayListHelper. list(ArrayObject array, NativeObjectContainerFactory<E> factory)
Creates a array list of java script native object container by a java script array and a factory.static <E extends NativeObjectContainer>
List<E>ArrayListHelper. unmodifiableList(ArrayObject array, NativeObjectContainerFactory<E> factory)
Creates an unmodifiable array list of java script native object container by a java script array and a factory. -
Uses of NativeObjectContainerFactory in org.pepstock.charba.client.controllers
Classes in org.pepstock.charba.client.controllers that implement NativeObjectContainerFactory Modifier and Type Class Description class
ControllerMapperFactory<T extends NativeObjectContainer>
Class to implement from controllers in order to extend the standard configuration of charts.
It takes the java script object of standard options passing it to a wrapper to manage additional properties. -
Uses of NativeObjectContainerFactory in org.pepstock.charba.client.data
Classes in org.pepstock.charba.client.data that implement NativeObjectContainerFactory Modifier and Type Class Description static class
ArcBorderRadius.ArcBorderRadiusFactory
Inner class to create arc border radius object by a native object.static class
BarBorderRadius.BarBorderRadiusFactory
Inner class to create bar border radius object by a native object.static class
BarBorderWidth.BarBorderWidthFactory
Inner class to create bar border width object by a native object.Methods in org.pepstock.charba.client.data with parameters of type NativeObjectContainerFactory Modifier and Type Method Description <T extends NativeObjectContainer>
TAbstractDataPoint. getAttributeAsObject(Key key, NativeObjectContainerFactory<T> factory)
Returns a custom field value from data point. -
Uses of NativeObjectContainerFactory in org.pepstock.charba.client.geo
Classes in org.pepstock.charba.client.geo that implement NativeObjectContainerFactory Modifier and Type Class Description static class
BubbleMapDataPoint.BubbleMapDataPointFactory
CreatesBubbleMapDataPoint
form aNativeObject
.static class
ChoroplethDataPoint.ChoroplethDataPointFactory
CreatesChoroplethDataPoint
form aNativeObject
. -
Uses of NativeObjectContainerFactory in org.pepstock.charba.client.intl
Classes in org.pepstock.charba.client.intl that implement NativeObjectContainerFactory Modifier and Type Class Description static class
DateTimeFormatOptions.DateTimeFormatOptionsFactory
Creates a date time format options by a native object and a default values instance.static class
NumberFormatOptions.NumberFormatOptionsFactory
Creates a number format options by a native object and a default values instance. -
Uses of NativeObjectContainerFactory in org.pepstock.charba.client.items
Classes in org.pepstock.charba.client.items that implement NativeObjectContainerFactory Modifier and Type Class Description static class
DatasetReference.DatasetReferenceItemFactory
Inner class to create data set reference item by a native object.static class
LegendItem.LegendItemFactory
Inner class to create legend item by a native object.static class
LegendLabelItem.LegendLabelItemFactory
Inner class to create legend label item by a native object.static class
ScaleTickItem.ScaleTickItemFactory
Inner class to create time tick item by a native object.static class
TooltipItem.TooltipItemFactory
Inner class to create tooltip item by a native object.static class
TooltipLabelColor.TooltipLabelColorFactory
Inner class to create tooltip label color by a native object.static class
TooltipLabelPointStyle.TooltipLabelPointStyleFactory
Inner class to create tooltip label point style by a native object.Methods in org.pepstock.charba.client.items with parameters of type NativeObjectContainerFactory Modifier and Type Method Description <T extends NativeObjectContainer>
TDataItem. createDataPoint(NativeObjectContainerFactory<T> factory)
Returns a data point to be mapped for customization, like for out of the box controllers. -
Uses of NativeObjectContainerFactory in org.pepstock.charba.client.sankey
Classes in org.pepstock.charba.client.sankey that implement NativeObjectContainerFactory Modifier and Type Class Description static class
SankeyDataset.DataPointFactory
Factory to create a sankey data point from a native object, used for array container lists. -
Uses of NativeObjectContainerFactory in org.pepstock.charba.client.treemap
Methods in org.pepstock.charba.client.treemap with parameters of type NativeObjectContainerFactory Modifier and Type Method Description <T extends NativeObjectContainer>
TTreeMapDataPoint. getData(NativeObjectContainerFactory<T> factory)
Returns the object in the user format of the data point.<T extends NativeObjectContainer>
List<T>TreeMapDataPoint. getTreeObjects(NativeObjectContainerFactory<T> factory)
Returns the unmodifiable list of tree user objects, related to this data point.<T extends NativeObjectContainer>
List<T>TreeMapDataset. getTreeObjects(NativeObjectContainerFactory<T> factory)
Returns the tree data property of a data set for a chart is specified as a list of objects.<T extends NativeObjectContainer>
List<T>TreeMapDataset. getTreeObjects(NativeObjectContainerFactory<T> factory, boolean binding)
Returns the tree data property of a data set for a chart is specified as an list of objects. -
Uses of NativeObjectContainerFactory in org.pepstock.charba.client.utils
Methods in org.pepstock.charba.client.utils with parameters of type NativeObjectContainerFactory Modifier and Type Method Description <T extends NativeObjectContainer>
TRegExpResult. groups(NativeObjectContainerFactory<T> factory)
Returns the object to refer to certain token by string that a regular expression matches.
-