Package | Description |
---|---|
org.pepstock.charba.client.geo |
Contains all classes to activate the GEO controllers (AKA
chartjs-chart-geo.js ) for CHART.js. |
org.pepstock.charba.client.geo.callbacks |
Contains all callbacks to configure the GEO controllers.
|
Modifier and Type | Method and Description |
---|---|
static Feature |
GeoUtils.feature(AbstractInjectableResource topojson,
Key featureProperty,
FeatureFindCallback findCallback)
Reads the topoJson definition and find a specific feature to enable outline.
|
static Feature |
GeoUtils.feature(AbstractInjectableResource topojson,
String featureProperty,
FeatureFindCallback findCallback)
Reads the topoJson definition and find a specific feature to enable outline.
|
static Feature |
GeoUtils.feature(String topojson,
Key featureProperty,
FeatureFindCallback findCallback)
Reads the topoJson definition and find a specific feature to enable outline.
|
static Feature |
GeoUtils.feature(String topojson,
String featureProperty,
FeatureFindCallback findCallback)
Reads the topoJson definition and find a specific feature to enable outline.
|
static Feature |
GeoUtils.feature(TopoJson topojson,
Key featureProperty,
FeatureFindCallback findCallback)
Reads the topoJson definition and find a specific feature to enable outline.
|
static Feature |
GeoUtils.feature(TopoJson topojson,
String 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.
|
Modifier and Type | Method and Description |
---|---|
static List<Feature> |
GeoUtils.features(AbstractInjectableResource topojson,
Key featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
static List<Feature> |
GeoUtils.features(AbstractInjectableResource topojson,
Key featureProperty,
FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
static List<Feature> |
GeoUtils.features(AbstractInjectableResource topojson,
String featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
static List<Feature> |
GeoUtils.features(AbstractInjectableResource topojson,
String featureProperty,
FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
static List<Feature> |
GeoUtils.features(String topojson,
Key featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
static List<Feature> |
GeoUtils.features(String topojson,
Key featureProperty,
FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
static List<Feature> |
GeoUtils.features(String topojson,
String featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
static List<Feature> |
GeoUtils.features(String topojson,
String featureProperty,
FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
static List<Feature> |
GeoUtils.features(TopoJson topojson,
Key featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
static List<Feature> |
GeoUtils.features(TopoJson topojson,
Key featureProperty,
FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
static List<Feature> |
GeoUtils.features(TopoJson topojson,
String featureProperty)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
static List<Feature> |
GeoUtils.features(TopoJson topojson,
String featureProperty,
FeatureFilterCallback filterCallback)
Reads the topoJson definition and creates a list of features to enable regions drawing.
|
Modifier and Type | Method and Description |
---|---|
void |
ChoroplethDataPoint.setFeature(Feature feature)
Sets the feature object to identify the region.
|
Modifier and Type | Method and Description |
---|---|
static Labels |
GeoUtils.loadLabels(List<Feature> features,
FeatureLabelCallback labelCallback)
Creates and loads a
Labels object with the label of feature object by the callback. |
static Labels |
GeoUtils.loadLabels(List<Feature> features,
Key property)
Creates and loads a
Labels object with the label of feature object by the property. |
static Labels |
GeoUtils.loadLabels(List<Feature> features,
String property)
Creates and loads a
Labels object with the label of feature object by the property. |
Constructor and 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.
|
Modifier and Type | Method and Description |
---|---|
boolean |
FeatureFilterCallback.filter(Feature feature,
int index)
|
boolean |
FeatureFindCallback.find(Feature feature,
int index)
|
String |
FeatureLabelCallback.label(Feature feature)
|