gwt.material.design.amcharts.client.series.Series Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-material-am4charts
Show all versions of gwt-material-am4charts
Amcharts Version 4 for GMD
/*
* #%L
* GwtMaterial
* %%
* Copyright (C) 2015 - 2018 GwtMaterialDesign
* %%
* 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.
* #L%
*/
package gwt.material.design.amcharts.client.series;
import gwt.material.design.amcharts.client.SerialChart;
import gwt.material.design.amcharts.client.bullet.Bullet;
import gwt.material.design.amcharts.client.datafield.series.SeriesDataFields;
import gwt.material.design.amcharts.client.dataitem.AxisDataItem;
import gwt.material.design.amcharts.client.dataitem.LegendDataItem;
import gwt.material.design.amcharts.client.legend.LegendSettings;
import gwt.material.design.amcore.client.base.Component;
import gwt.material.design.amcore.client.base.Sprite;
import gwt.material.design.amcore.client.events.SpriteEventDispatcher;
import gwt.material.design.amcore.client.list.List;
import gwt.material.design.amcore.client.list.ListTemplate;
import gwt.material.design.amcore.client.properties.HeatRule;
import jsinterop.annotations.JsMethod;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class Series extends Component {
@JsProperty
public boolean autoDispose;
@JsProperty
public List axisRanges;
@JsProperty
public ListTemplate bullets;
@JsProperty
public boolean calculatePercent;
@JsProperty
public SerialChart chart;
@JsProperty
public List heatRules;
@JsProperty
public boolean hiddenInLegend;
@JsProperty
public boolean ignoreMinMax;
@JsProperty
public String itemReaderText;
@JsProperty
public LegendDataItem legendDataItem;
@JsProperty
public LegendSettings legendSettings;
@JsProperty
public double minBulletDistance;
@JsProperty
public String name;
@JsProperty
public boolean skipFocusThreshold;
@JsProperty
public SeriesDataFields dataFields;
@JsProperty
public Sprite labelsContainer;
@JsProperty
public SpriteEventDispatcher events;
@JsMethod
public native void copyFrom(Series source);
@JsMethod
public native void positionBullet(Bullet bullet);
@JsMethod
public native void raiseCriticalError(Object error);
}