Package com.positive.charts.event

Examples of com.positive.charts.event.DatasetChangeEvent


  public void setXPosition(final TimePeriodAnchor anchor) {
    if (anchor == null) {
      throw new IllegalArgumentException("Null 'anchor' argument.");
    }
    this.xPosition = anchor;
    this.notifyListeners(new DatasetChangeEvent(this, this));
  }
View Full Code Here


      this.setDatasetGroup(dataset.getGroup());
      dataset.addChangeListener(this);
    }

    // send a dataset change event to self...
    final DatasetChangeEvent event = new DatasetChangeEvent(this, dataset);
    this.datasetChanged(event);
  }
View Full Code Here

TOP

Related Classes of com.positive.charts.event.DatasetChangeEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.