Class VectorPlotOptions

    • Constructor Detail

      • VectorPlotOptions

        public VectorPlotOptions()
    • Method Detail

      • getCluster

        public Cluster getCluster()
        Returns the options for marker clusters, the concept of sampling the data values into larger blocks in order to ease readability and increase performance of the JavaScript charts.

        Default: an instance of Cluster.

        Since:
        10.2.1.0
      • setCluster

        public void setCluster​(Cluster cluster)
        Sets the options for marker clusters, the concept of sampling the data values into larger blocks in order to ease readability and increase performance of the JavaScript charts.

        Default: an instance of Cluster.

        Since:
        10.2.1.0
      • getRotationOrigin

        public String getRotationOrigin()
        Returns what part of the vector it should be rotated around. Can be one of start, center and end. When start, the vectors will start from the given [x, y] position, and when end the vectors will end in the [x, y] position.

        Default: "center"

      • setRotationOrigin

        public void setRotationOrigin​(String rotationOrigin)
        Sets what part of the vector it should be rotated around. Can be one of start, center and end. When start, the vectors will start from the given [x, y] position, and when end the vectors will end in the [x, y] position.
      • getVectorLength

        public Number getVectorLength()
        Returns maximum length of the arrows in the vector plot. The individual arrow length is computed between 0 and this value.

        Default: 20

      • setVectorLength

        public void setVectorLength​(Number vectorLength)
        Sets maximum length of the arrows in the vector plot. The individual arrow length is computed between 0 and this value.