raphamorim/origami.js

new line chart API

Aberta

#40 aberto em 23 de set. de 2016

 (0 comentário) (0 reação) (0 responsável)JavaScript (61 forks)batch import
Hacktoberfest

Métricas do repositório

Stars
 (757 estrelas)
Métricas de merge de PR
 (Nenhuma PRs mesclada em 30d)

Description

suggestion to work with multline

origami('#canvas').chartLine({
          labels: ["January", "February", "March", "April", "May", "June", "July"],
          datasets: [
                    {
                        data: [65, 59, 80, 81, 56, 30, 60],
                        points: true,
                        pointsColor: "red",
                        line: "1px dashed #000",
                    },
                    {
                        data: [5, 159, 20, 31, 56, 30, 60],
                        points: true,
                        pointsColor: "red",
                        line: "1px dashed #000",
                    }
                ]
                gridLines: {
                    vertical: false,
                    horizontal: false,
                },
}).draw();

Guia do colaborador