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

kg.apc.charting.elements.GraphPanelChartSimpleElement Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
package kg.apc.charting.elements;

import kg.apc.charting.AbstractGraphPanelChartElement;

/** {@inheritDoc} */
public class GraphPanelChartSimpleElement
      extends AbstractGraphPanelChartElement
{
   double value = 0;
   /**
    *
    * @param yVal
    */
   public GraphPanelChartSimpleElement(double yVal)
   {
      add(yVal);
   }

   GraphPanelChartSimpleElement()
   {
   }

   /**
    *
    * @param yVal
    */
   public void add(double yVal)
   {
      value = yVal;
   }

   /** {@inheritDoc} */
   public double getValue()
   {
      return value;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy