The Wayback Machine - https://web.archive.org/web/20211118220021/https://github.com/topics/control-panels
Skip to content
#

control-panels

Here are 3 public repositories matching this topic...

Language: All
Filter by language
MarcSkovMadsen
MarcSkovMadsen commented Nov 7, 2021

Heischo asked how he could format the label of the DataRangeSlider. @Hoxbro answered it was not supported but a solution would be

import panel as pn
import param
from datetime import datetime

pn.extension()


class FormatDateRangeSlider(pn.widgets.DateRangeSlider):
    format = param.String(r"%m%Y")

    def _process_property_change(self, msg):
        msg = super()._pr

Improve this page

Add a description, image, and links to the control-panels topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the control-panels topic, visit your repo's landing page and select "manage topics."

Learn more