Skip to content
Snippets Groups Projects
Select Git revision
  • 39ce72421c957eb3885101c7abb3fbd0e621c181
  • main default protected
2 results

text_element.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    text_element.js 771 B
    import { GridWidget } from "@polaris/dashboard-sdk";
    import {TextElement} from "../../src/js/elements/textelement";
    
    const data = [
        {
            type: "heatmap",
            name: "Block 1",
            options: {
                showLegend: false,
            },
            data:
            [
    
            ]
        },
        {
            type: "heatmap",
            name: "Block 2",
            options: {
                showLegend: false,
            },
            data:
            [
    
            ]
        },
        {
            type: "heatmap",
            name: "Block 3",
            options: {
                showLegend: false,
            },
            data:
            [
    
            ]
        }
    ]
    
    
    export const textGridDef = { "text-grid-widget" :
        new TextElement(
            "00.00.00 - noch ... Tage",
            {
                direction: "row"
            })
    }