All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pepstock.charba.client.impl.plugins.ChartPointerOptions Maven / Gradle / Ivy

There is a newer version: 6.5-gwt
Show newest version
/**
    Copyright 2017 Andrea "Stock" Stocchero

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

	    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/
package org.pepstock.charba.client.impl.plugins;

import java.util.Arrays;
import java.util.List;

import org.pepstock.charba.client.IsChart;
import org.pepstock.charba.client.commons.ArrayListHelper;
import org.pepstock.charba.client.commons.ArrayString;
import org.pepstock.charba.client.commons.Key;
import org.pepstock.charba.client.commons.NativeObject;
import org.pepstock.charba.client.impl.plugins.enums.PointerElement;

/**
 * Configuration options of {@link ChartPointer#ID} plugin.
* It manages the cursor to adopt when the cursor is over the dataset item and when not. * * @author Andrea "Stock" Stocchero */ public final class ChartPointerOptions extends AbstractCursorPointerOptions implements IsChartPointerDefaultOptions { // default list for elements static final List DEFAULTS_ELEMENTS = Arrays.asList(PointerElement.values()); /** * Name of properties of native object. */ enum Property implements Key { ELEMENTS("elements"); // name value of property private final String value; /** * Creates with the property value to use in the native object. * * @param value value of property name */ private Property(String value) { this.value = value; } /* * (non-Javadoc) * * @see org.pepstock.charba.client.commons.Key#value() */ @Override public String value() { return value; } } // defaults global options instance private IsChartPointerDefaultOptions defaultOptions; /** * Builds the object with new java script object setting the default value of plugin.
* The global plugin options is used, if exists, as defaults values. */ public ChartPointerOptions() { this(null, null); } /** * Builds the object with a chart instance in order to get the right defaults.
* If the plugin options have not been set by chart type, it will use the global. * * @param chart chart instance related to the plugin options */ public ChartPointerOptions(IsChart chart) { this(IsChart.isConsistent(chart) ? chart.getDefaultChartOptions().getPlugins().getOptions(ChartPointer.ID, ChartPointer.DEFAULTS_FACTORY) : null); } /** * Builds the object with the default global ones * * @param defaultOptions default options stored in the defaults global */ ChartPointerOptions(IsChartPointerDefaultOptions defaultOptions) { this(defaultOptions, null); } /** * Builds the object with a java script object stored in the options and the default global ones * * @param nativeObject native object in the options * @param defaultOptions default options stored in the defaults global */ ChartPointerOptions(IsChartPointerDefaultOptions defaultOptions, NativeObject nativeObject) { super(ChartPointer.ID, nativeObject); // checks if defaults options are consistent if (defaultOptions == null) { // reads the default default global options this.defaultOptions = loadGlobalsPluginOptions(ChartPointer.DEFAULTS_FACTORY); } else { // stores default options this.defaultOptions = defaultOptions; } } /** * Sets the chart elements in scope to {@link ChartPointer#ID} plugin. * * @param elements the chart elements in scope to {@link ChartPointer#ID} plugin */ public void setElements(PointerElement... elements) { // sets the array of events setArrayValue(Property.ELEMENTS, ArrayString.fromOrNull(elements)); } /** * Returns the chart elements in scope to {@link ChartPointer#ID} plugin. * * @return the chart elements in scope to {@link ChartPointer#ID} plugin */ @Override public List getElements() { // checks if there is the property if (has(Property.ELEMENTS)) { // reads the property ArrayString array = getArrayValue(ChartPointerOptions.Property.ELEMENTS); return ArrayListHelper.list(PointerElement.values(), array); } // if here, there is not any property // returns defaults elements return defaultOptions.getElements(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy