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

io.deepsense.neptune.clientlibrary.models.ChartSeries Maven / Gradle / Ivy

There is a newer version: 1.6.1
Show newest version
/**
 * Copyright (c) 2016, CodiLime Inc.
 */

package io.deepsense.neptune.clientlibrary.models;

/**
 * Representing series of the chart.
 */
public interface ChartSeries {
    /**
     *
     * @return The name of this chart series.
     */
    String getName();

    /**
     *
     * @return Channel which values will be displayed on this series.
     */
    Channel getChannel();

    /**
     *
     * @return Type of series @see ChartSeriesType.
     */
    ChartSeriesType getType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy