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

org.fujion.sparkline.DiscretePlot Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package org.fujion.sparkline;

import org.fujion.annotation.Option;

/**
 * Discrete charts provide a separated thin vertical line for each value.
 */
public class DiscretePlot extends AbstractPlot {

    /**
     * Height of each line in pixels.
     * 

* Default: 30% of the graph height */ @Option public Integer lineHeight; /** * Values less than this value will be drawn using thresholdColor instead of lineColor. */ @Option public Double thresholdValue; /** * Color to use in combination with thresholdValue. */ @Option public String thresholdColor; protected DiscretePlot() { super(SparklineType.DISCRETE); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy