не удалось загрузить highcharts в pdf-файле с wicked_pdf и rails 5 - PullRequest
0 голосов
/ 17 апреля 2019

Я пытаюсь напечатать старшие графики в pdf-файле, используя wicked_pdf, wkhtmltopdf-бинарные гемы в рельсах. В Gemfile я добавил эти два камня. ниже мой index.pdf.erb

<%= javascript_include_tag 'application' %>
<%= javascript_include_tag "https://code.highcharts.com/highcharts.js" %>
<%= javascript_include_tag "https://code.highcharts.com/modules/exporting.js" %>
<%= javascript_include_tag "https://code.highcharts.com/modules/export-data.js" %>


    <% @products.each do |product| %>
       <%= product.name %>
    <% end %>
<div id="container" style="min-width: 310px; height: 400px; max-width: 600px; margin: 0 auto"></div>

<script>
  Highcharts.chart('container', {
    chart: {
        plotBackgroundColor: null,
        plotBorderWidth: null,
        plotShadow: false,
        type: 'pie'
    },
    title: {
        text: 'Browser market shares in January, 2018'
    },
    tooltip: {
        pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
    },
    plotOptions: {
        animation: false,
        pie: {
                  animation: false,
    enableMouseTracking: false,
    shadow: false,
            allowPointSelect: true,
            cursor: 'pointer',
            dataLabels: {
                enabled: true,
                format: '<b>{point.name}</b>: {point.percentage:.1f} %',
                style: {
                    color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
                }
            }
        }
    },
    series: [{
        #{request.format == 'pdf' ? 'enableMouseTracking: false, shadow: false, animation: false' : nil}
        name: 'Brands',
        colorByPoint: true,
        data: [{
            name: 'Chrome',
            y: 61.41,
            sliced: true,
            selected: true
        }, {
            name: 'Internet Explorer',
            y: 11.84
        }]
    }]
});
</script>

но highcharts не рендерится в pdf файле. Может ли кто-нибудь помочь мне с этим.

...