0

I want to create a static gauge widget that is to display a known given value. The gauge should be inside the box, below some given data. My code so far is:

        box(
        title="Analyst Intern, Anlytics",status="warning",solidHeader=TRUE,
        "Full-time job $1000",
        br(), "Industry: Delivery", br(), "Skills: Python",
        width=4,
        gauge(98, min = 0 , max = 100,symbol = "%",
              gaugeSectors(success = c(80,100),
                           warning = c (50, 80),
                           danger = c (0,50))
        ),
        ),
        box(
          title="Analyst Intern, Anlytics",status="warning",solidHeader=TRUE,
          "Full-time job $1000",
          br(), "Industry: Delivery", br(), "Skills: Python",
          width=4,
          gauge(56, min = 0 , max = 100,symbol = "%",
                gaugeSectors(success = c(80,100),
                             warning = c (50, 80),
                             danger = c (0,50))
          ),
        ),
        
        box(
          title="Anlayst Intern, Anlytics",status="warning",solidHeader=TRUE,
          "Full-time job $1000",
          br(), "Industry: Delivery", br(), "Skills: Python",
          width=4,
          div(class = "pull-down",
              gauge(70, min = 0 , max = 100,symbol = "%",
                gaugeSectors(success = c(80,100),
                             warning = c (50, 80),
                             danger = c (0,50))
          ))
)

So far my code doesn't show the gauge. This is what it currently shows I want each gauge to be within the orange box. Any help is much appreciated. TIA

0 Answers0