Uses of Class
org.pepstock.charba.client.geo.Feature
-
Packages that use Feature Package Description org.pepstock.charba.client.geo Contains all classes to activate the GEO controllers (AKAchartjs-chart-geo.js
) for CHART.js.org.pepstock.charba.client.geo.callbacks Contains all callbacks to configure the GEO controllers. -
-
Uses of Feature in org.pepstock.charba.client.geo
Methods in org.pepstock.charba.client.geo that return Feature Modifier and Type Method Description static Feature
GeoUtil. feature(String topojson, String featureProperty, FeatureFindCallback findCallback)
Reads the topoJson definition and find a specific feature to enable outline.static Feature
GeoUtil. feature(String topojson, Key featureProperty, FeatureFindCallback findCallback)
Reads the topoJson definition and find a specific feature to enable outline.static Feature
GeoUtil. feature(TopoJson topojson, String featureProperty, FeatureFindCallback findCallback)
Reads the topoJson definition and find a specific feature to enable outline.static Feature
GeoUtil. feature(TopoJson topojson, Key featureProperty, FeatureFindCallback findCallback)
Reads the topoJson definition and find a specific feature to enable outline.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.Feature
ChoroplethDataPoint. getFeature()
Returns the feature object to identify the region.Methods in org.pepstock.charba.client.geo that return types with arguments of type Feature Modifier and Type Method Description static List<Feature>
GeoUtil. features(String topojson, String featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.static List<Feature>
GeoUtil. features(String topojson, String featureProperty, FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing.static List<Feature>
GeoUtil. features(String topojson, Key featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.static List<Feature>
GeoUtil. features(String topojson, Key featureProperty, FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing.static List<Feature>
GeoUtil. features(TopoJson topojson, String featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.static List<Feature>
GeoUtil. features(TopoJson topojson, String featureProperty, FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing.static List<Feature>
GeoUtil. features(TopoJson topojson, Key featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.static List<Feature>
GeoUtil. features(TopoJson topojson, Key featureProperty, FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing.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.Methods in org.pepstock.charba.client.geo with parameters of type Feature Modifier and Type Method Description void
ChoroplethDataPoint. setFeature(Feature feature)
Sets the feature object to identify the region.Method parameters in org.pepstock.charba.client.geo with type arguments of type Feature Modifier and Type Method Description static Labels
GeoUtil. loadLabels(List<Feature> features, String property)
Creates and loads aLabels
object with the label of feature object by the property.static Labels
GeoUtil. loadLabels(List<Feature> features, Key property)
Creates and loads aLabels
object with the label of feature object by the property.static Labels
GeoUtil. loadLabels(List<Feature> features, FeatureLabelCallback labelCallback)
Creates and loads aLabels
object with the label of feature object by the callback.Constructors in org.pepstock.charba.client.geo with parameters of type Feature Constructor Description ChoroplethDataPoint(Feature feature)
Creates the object with the assigned feature.ChoroplethDataPoint(Feature feature, double value)
Creates the object with the assigned feature and value. -
Uses of Feature in org.pepstock.charba.client.geo.callbacks
Methods in org.pepstock.charba.client.geo.callbacks with parameters of type Feature Modifier and Type Method Description boolean
FeatureFilterCallback. filter(Feature feature, int index)
boolean
FeatureFindCallback. find(Feature feature, int index)
String
FeatureLabelCallback. label(Feature feature)
-