Package org.krysalis.jcharts.imageMap

Examples of org.krysalis.jcharts.imageMap.ImageMapArea


    this.stringBuffer.append( "\">" );

    Iterator iterator = imageMap.getIterator();
    while( iterator.hasNext() )
    {
      ImageMapArea imageMapArea = ( ImageMapArea ) iterator.next();

      StringBuffer html = new StringBuffer( 50 );
      html.append( "href=\"javascript:alert( 'value= " );
      html.append( imageMapArea.getValue() );
      html.append( ",  legend label= " );
      html.append( imageMapArea.getLengendLabel() );
      html.append( ", axis label= " );
      html.append( imageMapArea.getXAxisLabel() );
      html.append( "');\"" );

      this.stringBuffer.append( imageMapArea.toHTML( html.toString() ) );
    }

    this.stringBuffer.append( "</map>" );
  }
View Full Code Here

TOP

Related Classes of org.krysalis.jcharts.imageMap.ImageMapArea

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.