Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • dev_2022
  • patch-1
  • develop
  • 50-use-ubuntus-libhidapi
  • issue-highLevelDispatch
  • issue-highLevelDesign
  • issue-motorStartBug
  • issue-commandLayerDesign
  • v1.0
  • v0.4-rc.13
  • v0.4-rc.12
  • v0.4-rc.11
  • v0.4-rc.10
  • v0.4-rc.9
  • v0.3-rc.8
  • v0.3-rc.7
  • v0.3-rc.6
  • v0.3-rc.5
  • v0.3-rc.4
  • v0.3-rc.3
  • v0.3-rc.2
  • v0.3-rc.1
  • v0.3-rc
  • v0.2
  • v0.1.1
  • v0.1
27 results

Makefile

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