Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • Quadtree_Halfedge
2 results

Example_1.txt

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"
            })
    }