Files
Eric Tuvesson 53f0d6320e Initial commit
Co-Authored-By: kotte <14197736+mrtamagotchi@users.noreply.github.com>
Co-Authored-By: mikaeltellhed <2311083+mikaeltellhed@users.noreply.github.com>
Co-Authored-By: Tore Knudsen <18231882+torekndsn@users.noreply.github.com>
Co-Authored-By: Michael Cartner <32543275+michaelcartner@users.noreply.github.com>
2023-09-05 12:08:55 +02:00

1.8 KiB

title, hide_title
title hide_title
Bar Chart Example | Chart.js Module true

Bar Chart Example

Basic

Outputs.Data = {
    labels: ["January", "February", "March", "April", "May", "June", "July"],
    datasets: [
        {
            label: "Dataset 1",
            data: [
                [32, 36],
                [-86, 50],
                [-37, 0],
                [-3, 43],
                [3, -46],
                [-36, 6],
                [3, 4]
            ],
            backgroundColor: "rgb(255, 99, 132)"
        },
        {
            label: "Dataset 2",
            data: [
                [91, 31],
                [50, -56],
                [-79, -14],
                [44, -47],
                [91, 78],
                [12, 53],
                [-71, -16]
            ],
            backgroundColor: "rgb(54, 162, 235)"
        }
    ]
}

Horizontal

Change the "Index Axis" to "Y" in the property panel.

Outputs.Data = {
    labels: ["January", "February", "March", "April", "May", "June", "July"],
    datasets: [
        {
            label: "Dataset 1",
            data: [-91.99588477, 52.35768176, -57.81550069, 61.43518519, 64.43072702, -1.91529492, 57.45884774],
            borderColor: "rgb(255, 99, 132)",
            backgroundColor: "rgba(255, 99, 132, 0.5)"
        },
        {
            label: "Dataset 2",
            data: [74.65192044, -58.97805213, -37.25823045, -50.31207133, 37.66289438, 43.95061728, -43.79458162],
            borderColor: "rgb(54, 162, 235)",
            backgroundColor: "rgba(54, 162, 235, 0.5)"
        }
    ]
}