Examples of ScatterChart


Examples of ofc4j.model.elements.ScatterChart

  @Override
  protected void createElements() {
    for ( int row = 0; row < getRowCount(); row++ ) {
      Element e = null;
      String text = getRowHeader( row );
      ScatterChart sc = new ScatterChart( "" ); //$NON-NLS-1$
      sc.setColour( getColor( row ) );
      Number x = (Number) getValueAt( row, 0 );
      Number y = (Number) getValueAt( row, 1 );

      if ( dotwidth != null ) {
        sc.setDotSize( dotwidth );
      }

      Node temp = chartNode.selectSingleNode( DOT_LABEL_CONTENT_NODE_LOC );
      if ( getValue( temp ) != null ) {
        sc.setTooltip( MessageFormat.format( getValue( temp ), text, NumberFormat.getInstance().format( x ),
            NumberFormat.getInstance().format( y ) ) );
      } else {
        sc.setTooltip( MessageFormat.format( "{0}: {1}, {2}", text, //$NON-NLS-1$
            NumberFormat.getInstance().format( x ), NumberFormat.getInstance().format( y ) ) );
      }

      sc.addPoint( x.doubleValue(), y.doubleValue() );

      if ( alpha != null ) {
        sc.setAlpha( alpha );
      }

      e = sc;
      e.setText( text );
      elements.add( e );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.