Skip to content

Instantly share code, notes, and snippets.

@jlamim
Created August 3, 2016 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlamim/c82727909439bb334c7588d80090ae58 to your computer and use it in GitHub Desktop.
Save jlamim/c82727909439bb334c7588d80090ae58 to your computer and use it in GitHub Desktop.
ChartJS + CodeIgniter
<?php $this->load->view('commons/cabecalho'); ?>
<div class="container">
<div class="col-md-12">
<div class="page-header">
<h1>Criando gráficos com ChartJS e CodeIgniter</h1>
</div>
</div>
<div class="col-md-12">
<p class="lead">Escolha nas opções abaixo o gráfico que deseja visualizar:</p>
<p class="text-center">
<a href="<?=base_url('donnutchart')?>" class="btn btn-success">DonnutChart</a>
<a href="<?=base_url('piechart')?>" class="btn btn-warning">PieChart</a>
<a href="<?=base_url('linechart')?>" class="btn btn-default">LineChart</a>
<a href="<?=base_url('barchart')?>" class="btn btn-info">BarChart</a>
</p>
</div>
<canvas class="col-md-12" id="<?=$chart?>-container" style="height:600px;">
</canvas>
</div>
<?php $this->load->view('commons/rodape'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment