com.supermap.mapping.imChart

Class ChartPoint

  • java.lang.Object
    • com.supermap.mapping.imChart.ChartPoint
  • Direct Known Subclasses:
    RelationalChartPoint


    public class ChartPoint
    extends java.lang.Object
    The chart uses the point object. It contains points and weights on a map, and weights affect the depth of color that the point displays in the chart.
    • Constructor Summary

      Constructors 
      Constructor and Description
      ChartPoint()
      The default constructor.
      ChartPoint(Point2D point, float weighted)
      The constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      Point2D getPoint()
      Gets the point coordinates, points on the map.
      float getWeighted()
      Gets weight
      void setPoint(Point2D point)
      Sets the point coordinates, points on the map.
      void setWeighted(float weighted)
      Sets the weight value.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ChartPoint

        public ChartPoint()
        The default constructor.
      • ChartPoint

        public ChartPoint(Point2D point,
                          float weighted)
        The constructor.
        Parameters:
        point - Point coordinates, points on the map.
        weighted - Weight.
    • Method Detail

      • getPoint

        public Point2D getPoint()
        Gets the point coordinates, points on the map.
        Returns:
        Points on the map.
      • setPoint

        public void setPoint(Point2D point)
        Sets the point coordinates, points on the map.
        Parameters:
        point - Points on the map.
      • getWeighted

        public float getWeighted()
        Gets weight
        Returns:
        Returns weight.
      • setWeighted

        public void setWeighted(float weighted)
        Sets the weight value.
        Parameters:
        weighted - Weight.