12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <meta name="description" content="Example showing how to use TChartJS">
- <meta name="author" content="silvioprog">
- <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.min.js" integrity="sha256-oSgtFCCmHWRPQ/JmR4OoZ3Xke1Pw4v50uh6pLcu+fIc=" crossorigin="anonymous"></script>
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
- <script src="js/demointeractions.js"></script>
- <title>TChartJS example</title>
- <style>
- canvas {
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- }
- .chart-container {
- width: 500px;
- margin-left: 40px;
- margin-right: 40px;
- margin-bottom: 40px;
- }
- .container {
- display: flex;
- flex-direction: column;
- flex-wrap: wrap;
- justify-content: center;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h3 class="title">
- TChartJS <small class="text-muted">Interaction charts using Pas2JS & ChartJS (<a href="demointeractions.lpr">view source</a>)</small>
- </h3>
- <div class="demoarea"></div>
- </div>
- <script>
- rtl.run();
- </script>
- </body>
- </html>
|