Printing Chart

7 Jun 20232 minutes to read

The rendered chart can be printed directly from the browser by calling the public method print. ID of the chart div element must be passed as argument to that method.

  • HTML
  • <body>
       <button type="button" onclick="print()" ></button> 
    <div id="container"></div>
    <script>
            //Render Chart
            $("#container").ejChart(
             {
               
             });
    
    function print() {
    var chartObj = $("#container").ejChart("instance");
    chartObj.print("container");
            }
    
    </script>
    </body>

    This print method can be called by performing any action on the web page. For example, by clicking a button. While calling the print method in chart, print preview will be displayed in the browser.

    Click here to view the Printing chart online demo sample

    Printing Multiple chart

    Multiple charts in a web page can be printed together. For printing multiple charts, ID of the chart div elements have to be passed as shown in the below code

  • JAVASCRIPT
  • //Render Chart1
           $("#container1").ejChart();
    
           //Render Chart2
            $("#container2").ejChart();
    
           //Print multiple charts 
               function print() {
                var chartObj = $("#container1").ejChart("instance");
                chartObj.print("container1","container2");
            }

    The Print preview of multiple Charts is shown below

    Page Setup

    Some of print options are not configurable through JavaScript code. You need to customize layout, paper size, margins options through browser’s page setup dialog. Please find the following guidelines link to browser page setup.