Package com.mxgraph.canvas

Examples of com.mxgraph.canvas.mxHtmlCanvas


   *
   */
  public static Document createHtmlDocument(mxGraph graph, Object[] cells,
      double scale, Color background, mxRectangle clip)
  {
    mxHtmlCanvas canvas = (mxHtmlCanvas) drawCells(graph, cells, scale,
        clip, new CanvasFactory()
        {
          public mxICanvas createCanvas(int width, int height)
          {
            return new mxHtmlCanvas(mxDomUtils.createHtmlDocument());
          }

        });

    return canvas.getDocument();
  }
View Full Code Here


   *
   */
  public static Document createHtmlDocument(mxGraph graph, Object[] cells,
      double scale, Color background, mxRectangle clip)
  {
    mxHtmlCanvas canvas = (mxHtmlCanvas) drawCells(graph, cells, scale,
        clip, new CanvasFactory()
        {
          public mxICanvas createCanvas(int width, int height)
          {
            return new mxHtmlCanvas(mxUtils.createHtmlDocument());
          }

        });

    return canvas.getDocument();
  }
View Full Code Here

TOP

Related Classes of com.mxgraph.canvas.mxHtmlCanvas

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.