Sha256: 071e9fd9021cf1295e235d9146c2c38951b7c42779920928045edf7c1e34609a

Contents?: true

Size: 446 Bytes

Versions: 5

Compression:

Stored size: 446 Bytes

Contents

initializeCharts = ->
  $('.effective-datatables-chart').each ->
    $chart = $(this)

    data = $chart.data('data') || []
    type = $chart.data('type') || 'BarChart'
    options = $chart.data('options') || {}

    chart = new google.visualization[type](document.getElementById($chart.attr('id')))
    chart.draw(google.visualization.arrayToDataTable(data), options)

$ -> initializeCharts()
$(document).on 'page:change', -> initializeCharts()

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
effective_datatables-2.6.4 app/assets/javascripts/effective_datatables/charts.js.coffee
effective_datatables-2.6.3 app/assets/javascripts/effective_datatables/charts.js.coffee
effective_datatables-2.6.2 app/assets/javascripts/effective_datatables/charts.js.coffee
effective_datatables-2.6.1 app/assets/javascripts/effective_datatables/charts.js.coffee
effective_datatables-2.6.0 app/assets/javascripts/effective_datatables/charts.js.coffee