Interface EditableDataSet

    • Method Detail

      • setName

        EditableDataSet setName​(java.lang.String name)
        Parameters:
        name - the new data set name
        Returns:
        itself (fluent design)
      • set

        EditableDataSet set​(int index,
                            double x,
                            double y)
        modify point in the the data set
        Parameters:
        index - data point index at which the new data point should be added
        x - horizontal coordinate of the new data point
        y - vertical coordinate of the new data point
        Returns:
        itself (fluent design)
      • add

        EditableDataSet add​(int index,
                            double x,
                            double y)
        add point to the data set
        Parameters:
        index - data point index at which the new data point should be added
        x - horizontal coordinate of the new data point
        y - vertical coordinate of the new data point
        Returns:
        itself (fluent design)
      • remove

        EditableDataSet remove​(int index)
        remove point from data set
        Parameters:
        index - data point which should be removed
        Returns:
        itself (fluent design)
      • getEditConstraints

        EditConstraints getEditConstraints()
        Returns:
        edit constraints for data set
      • setEditConstraints

        EditableDataSet setEditConstraints​(EditConstraints constraints)
        Parameters:
        constraints - new edit constraints
        Returns:
        itself (fluent design)