javascript - Render JS charts in pdf using WKHTMLTOPDF Tool - Stack Overflow

I'm using WKHTMLTOPDF for printing the HTML pages.Every thing is working fine but the JS charts ar

I'm using WKHTMLTOPDF for printing the HTML pages.Every thing is working fine but the JS charts are not rendering. I have tried to render the chart

/

but the page is ing blank in pdf.

What i Have tried :

I have tried the below mand for rendering the HTML:

wkhtmltopdf .php --javascript-delay 2000 bell.pdf

In which the argument --javascript-delay 2000 is used to display the JS charts and give time to HTML page to render the all required JS.

My Question :-

Is it possible to render the JS charts in PDF using WKHTMLTOPDF ? If yes than where i'm going wrong ?

Chart Code is :

<style>
    #chartdiv {
    width       : 100%;
    height      : 500px;
    font-size   : 11px;
}           
</style>
<script type="text/javascript" src=".js"></script>
<script type="text/javascript" src=".js"></script>
<script type="text/javascript" src=".js"></script>
<div id="chartdiv"></div>
<script>
    /*  probability.js    12-25-2008    JavaScript
  Copyright (C)2008 Steven Whitney.
  Initially published by .

  This program is free software; you can redistribute it and/or
  modify it under the terms of the GNU General Public License (GPL)
  Version 3 as published by the Free Software Foundation.
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.
  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

Functions related to probability calculations.

*/
//----------------------------------------------------------------------------------------------
// Calculates a point Z(x), the Probability Density Function, on any normal curve. 
// This is the height of the point ON the normal curve.
// For values on the Standard Normal Curve, call with Mean = 0, StdDev = 1.
function NormalDensityZx( x, Mean, StdDev ) {
    var a = x - Mean;
    return Math.exp( -( a * a ) / ( 2 * StdDev * StdDev ) ) / ( Math.sqrt( 2 * Math.PI ) * StdDev );
  }
  //----------------------------------------------------------------------------------------------
  // Calculates Q(x), the right tail area under the Standard Normal Curve. 
function StandardNormalQx( x ) {
    if ( x === 0 ) // no approximation necessary for 0
      return 0.50;

    var t1, t2, t3, t4, t5, qx;
    var negative = false;
    if ( x < 0 ) {
      x = -x;
      negative = true;
    }
    t1 = 1 / ( 1 + ( 0.2316419 * x ) );
    t2 = t1 * t1;
    t3 = t2 * t1;
    t4 = t3 * t1;
    t5 = t4 * t1;
    qx = NormalDensityZx( x, 0, 1 ) * ( ( 0.319381530 * t1 ) + ( -0.356563782 * t2 ) +
      ( 1.781477937 * t3 ) + ( -1.821255978 * t4 ) + ( 1.330274429 * t5 ) );
    if ( negative == true )
      qx = 1 - qx;
    return qx;
  }
  //----------------------------------------------------------------------------------------------
  // Calculates P(x), the left tail area under the Standard Normal Curve, which is 1 - Q(x). 
function StandardNormalPx( x ) {
    return 1 - StandardNormalQx( x );
  }
  //----------------------------------------------------------------------------------------------
  // Calculates A(x), the area under the Standard Normal Curve between +x and -x. 
function StandardNormalAx( x ) {
    return 1 - ( 2 * StandardNormalQx( Math.abs( x ) ) );
  }
  //----------------------------------------------------------------------------------------------

/**
 * Define values where to put vertical lines at
 */
var verticals = [
  -1.4, -0.2, 1.2
];

/**
 * Calculate data
 */
var chartData = [];
for ( var i = -5; i < 5.1; i += 0.1 ) {
  var dp = {
    category: i,
    value: NormalDensityZx( i, 0, 1 )
  };
  if ( verticals.indexOf( Math.round( i * 10 ) / 10 ) !== -1 ) {
    dp.vertical = dp.value;
  }
  chartData.push( dp );
}

/**
 * Create a chart
 */
var chart = AmCharts.makeChart( "chartdiv", {
  "type": "serial",
  "theme": "light",
  "dataProvider": chartData,
  "precision": 2,
  "valueAxes": [ {
    "gridAlpha": 0.2,
    "dashLength": 0
  } ],
  "startDuration": 1,
  "graphs": [ {
    "balloonText": "[[category]]: <b>[[value]]</b>",
    "lineThickness": 3,
    "valueField": "value"
  }, {
    "balloonText": "",
    "fillAlphas": 1,
    "type": "column",
    "valueField": "vertical",
    "fixedColumnWidth": 2,
    "labelText": "[[value]]",
    "labelOffset": 20
  } ],
  "chartCursor": {
    "categoryBalloonEnabled": false,
    "cursorAlpha": 0,
    "zoomable": false
  },
  "categoryField": "category",
  "categoryAxis": {
    "gridAlpha": 0.05,
    "startOnAxis": true,
    "tickLength": 5,
    "labelFunction": function( label, item ) {
      return '' + Math.round( item.dataContext.category * 10 ) / 10;
    }
  }

} );
</script> 

I'm using WKHTMLTOPDF for printing the HTML pages.Every thing is working fine but the JS charts are not rendering. I have tried to render the chart

http://www.amcharts./tips/plotting-a-bell-curve-chart/

but the page is ing blank in pdf.

What i Have tried :

I have tried the below mand for rendering the HTML:

wkhtmltopdf http://example./bell.php --javascript-delay 2000 bell.pdf

In which the argument --javascript-delay 2000 is used to display the JS charts and give time to HTML page to render the all required JS.

My Question :-

Is it possible to render the JS charts in PDF using WKHTMLTOPDF ? If yes than where i'm going wrong ?

Chart Code is :

<style>
    #chartdiv {
    width       : 100%;
    height      : 500px;
    font-size   : 11px;
}           
</style>
<script type="text/javascript" src="http://www.amcharts./lib/3/amcharts.js"></script>
<script type="text/javascript" src="http://www.amcharts./lib/3/serial.js"></script>
<script type="text/javascript" src="http://www.amcharts./lib/3/themes/light.js"></script>
<div id="chartdiv"></div>
<script>
    /*  probability.js    12-25-2008    JavaScript
  Copyright (C)2008 Steven Whitney.
  Initially published by http://25yearsofprogramming..

  This program is free software; you can redistribute it and/or
  modify it under the terms of the GNU General Public License (GPL)
  Version 3 as published by the Free Software Foundation.
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.
  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

Functions related to probability calculations.

*/
//----------------------------------------------------------------------------------------------
// Calculates a point Z(x), the Probability Density Function, on any normal curve. 
// This is the height of the point ON the normal curve.
// For values on the Standard Normal Curve, call with Mean = 0, StdDev = 1.
function NormalDensityZx( x, Mean, StdDev ) {
    var a = x - Mean;
    return Math.exp( -( a * a ) / ( 2 * StdDev * StdDev ) ) / ( Math.sqrt( 2 * Math.PI ) * StdDev );
  }
  //----------------------------------------------------------------------------------------------
  // Calculates Q(x), the right tail area under the Standard Normal Curve. 
function StandardNormalQx( x ) {
    if ( x === 0 ) // no approximation necessary for 0
      return 0.50;

    var t1, t2, t3, t4, t5, qx;
    var negative = false;
    if ( x < 0 ) {
      x = -x;
      negative = true;
    }
    t1 = 1 / ( 1 + ( 0.2316419 * x ) );
    t2 = t1 * t1;
    t3 = t2 * t1;
    t4 = t3 * t1;
    t5 = t4 * t1;
    qx = NormalDensityZx( x, 0, 1 ) * ( ( 0.319381530 * t1 ) + ( -0.356563782 * t2 ) +
      ( 1.781477937 * t3 ) + ( -1.821255978 * t4 ) + ( 1.330274429 * t5 ) );
    if ( negative == true )
      qx = 1 - qx;
    return qx;
  }
  //----------------------------------------------------------------------------------------------
  // Calculates P(x), the left tail area under the Standard Normal Curve, which is 1 - Q(x). 
function StandardNormalPx( x ) {
    return 1 - StandardNormalQx( x );
  }
  //----------------------------------------------------------------------------------------------
  // Calculates A(x), the area under the Standard Normal Curve between +x and -x. 
function StandardNormalAx( x ) {
    return 1 - ( 2 * StandardNormalQx( Math.abs( x ) ) );
  }
  //----------------------------------------------------------------------------------------------

/**
 * Define values where to put vertical lines at
 */
var verticals = [
  -1.4, -0.2, 1.2
];

/**
 * Calculate data
 */
var chartData = [];
for ( var i = -5; i < 5.1; i += 0.1 ) {
  var dp = {
    category: i,
    value: NormalDensityZx( i, 0, 1 )
  };
  if ( verticals.indexOf( Math.round( i * 10 ) / 10 ) !== -1 ) {
    dp.vertical = dp.value;
  }
  chartData.push( dp );
}

/**
 * Create a chart
 */
var chart = AmCharts.makeChart( "chartdiv", {
  "type": "serial",
  "theme": "light",
  "dataProvider": chartData,
  "precision": 2,
  "valueAxes": [ {
    "gridAlpha": 0.2,
    "dashLength": 0
  } ],
  "startDuration": 1,
  "graphs": [ {
    "balloonText": "[[category]]: <b>[[value]]</b>",
    "lineThickness": 3,
    "valueField": "value"
  }, {
    "balloonText": "",
    "fillAlphas": 1,
    "type": "column",
    "valueField": "vertical",
    "fixedColumnWidth": 2,
    "labelText": "[[value]]",
    "labelOffset": 20
  } ],
  "chartCursor": {
    "categoryBalloonEnabled": false,
    "cursorAlpha": 0,
    "zoomable": false
  },
  "categoryField": "category",
  "categoryAxis": {
    "gridAlpha": 0.05,
    "startOnAxis": true,
    "tickLength": 5,
    "labelFunction": function( label, item ) {
      return '' + Math.round( item.dataContext.category * 10 ) / 10;
    }
  }

} );
</script> 
Share Improve this question edited Jun 18, 2015 at 6:43 Harshal asked Jun 17, 2015 at 10:10 HarshalHarshal 3,6229 gold badges39 silver badges67 bronze badges 7
  • How can I see on github it NOT working well right now: github./wkhtmltopdf/wkhtmltopdf/issues/1964. Exists other solution but you must use external program like phantomjs or casperjs to render chart and insert it like image. It's the only thing I can suggest... – stepozer Commented Jun 17, 2015 at 12:23
  • Did you try to open example./bell.php directly in browser? Do charts display fine there? – martynasma Commented Jun 17, 2015 at 13:01
  • @stepozer Yes, i'm also thinking about the solution to use image. – Harshal Commented Jun 17, 2015 at 15:51
  • @martynasma yes it working fine on browser. – Harshal Commented Jun 17, 2015 at 15:52
  • Can you post your chart code? – martynasma Commented Jun 17, 2015 at 18:08
 |  Show 2 more ments

1 Answer 1

Reset to default 4

I know this is late, but i just solved this issue, you need to set a specified width for your #chartdiv, try out this new style tag :

<style>
    #chartdiv {
    width       : 750px;
    height      : 500px;
    font-size   : 11px;
}           
</style>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745383249a4625327.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信