Uses of Class
org.pepstock.charba.client.resources.AbstractInjectableResource
-
Packages that use AbstractInjectableResource Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.geo Contains all classes to activate the GEO controllers (AKAchartjs-chart-geo.js
) for CHART.js.org.pepstock.charba.client.interaction Contains all classes to implement a custom interactions for CHART.JS.org.pepstock.charba.client.plugins Contains all classes to manage the plugin implementations.org.pepstock.charba.client.resources Contains the fundamental java script resources to inject in order to use Charba.
It provides all implementations to inject embedded resources for LUXON date adapters. -
-
Uses of AbstractInjectableResource in org.pepstock.charba.client
Methods in org.pepstock.charba.client with parameters of type AbstractInjectableResource Modifier and Type Method Description static void
Injector. ensureCssInjected(AbstractInjectableResource resource)
Injects a CSS style resource if not injected yet.static void
Injector. ensureInjected(AbstractInjectableResource resource)
Injects a script resource if not injected yet.static boolean
Injector. isInjected(AbstractInjectableResource resource)
Returnstrue
if the script or style resource has been already injected. -
Uses of AbstractInjectableResource in org.pepstock.charba.client.geo
Methods in org.pepstock.charba.client.geo with parameters of type AbstractInjectableResource Modifier and Type Method Description static TopoJson
GeoUtil. createTopoJson(AbstractInjectableResource topojson)
Creates theTopoJson
object definition from a topoJson text definition.static Feature
GeoUtil. feature(AbstractInjectableResource topojson, String featureProperty, FeatureFindCallback findCallback)
Reads the topoJson definition and find a specific feature to enable outline.static Feature
GeoUtil. feature(AbstractInjectableResource topojson, Key featureProperty, FeatureFindCallback findCallback)
Reads the topoJson definition and find a specific feature to enable outline.static List<Feature>
GeoUtil. features(AbstractInjectableResource topojson, String featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.static List<Feature>
GeoUtil. features(AbstractInjectableResource topojson, String featureProperty, FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing.static List<Feature>
GeoUtil. features(AbstractInjectableResource topojson, Key featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.static List<Feature>
GeoUtil. features(AbstractInjectableResource topojson, Key featureProperty, FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing. -
Uses of AbstractInjectableResource in org.pepstock.charba.client.interaction
Methods in org.pepstock.charba.client.interaction with parameters of type AbstractInjectableResource Modifier and Type Method Description Interactioner
Interactions. createNativeInteractioner(String mode, AbstractInjectableResource code)
Creates aInteractioner
for a specific mode, passed as argument, and a resource where the java script code, to implement the new interaction mode, is stored.Interactioner
Interactions. createNativeInteractioner(String mode, AbstractInjectableResource code, boolean register)
Creates aInteractioner
for a specific mode, passed as argument, and a resource where the java script code, to implement the new interaction mode, is stored. -
Uses of AbstractInjectableResource in org.pepstock.charba.client.plugins
Methods in org.pepstock.charba.client.plugins with parameters of type AbstractInjectableResource Modifier and Type Method Description boolean
GlobalPlugins. register(AbstractInjectableResource resource)
Registers a plugin as global, to apply to all charts.
The plugin is a CHART.JS implementation which is added on top of existing library.boolean
GlobalPlugins. register(AbstractInjectableResource resource, boolean enable)
Registers a plugin as global, to apply to all charts.
The plugin is a CHART.JS implementation which is added on top of existing library. -
Uses of AbstractInjectableResource in org.pepstock.charba.client.resources
Subclasses of AbstractInjectableResource in org.pepstock.charba.client.resources Modifier and Type Class Description class
EmptyResource
Default implementation for an empty resource to inject.
This could be helpful when you don't want to inject a library because are available from another framework.class
InjectableTextResource
Default implementation for an injectable resource related to a text resource.
-