API Reference#

The Panel API Reference Manual provides a comprehensive reference for all methods and parameters on Panel components.

Pane Module#

digraph inheritance4d0ce1e887 { bgcolor=transparent; fontsize=18; rankdir=LR; size="12.0, 12.0"; "dummy.module.Base" [URL="#dummy.module.Base",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Base docs."]; "param.parameterized.Parameterized" -> "dummy.module.Base" [arrowsize=0.5,style="setlinewidth(0.5)"]; "dummy.module.Concrete" [URL="#dummy.module.Concrete",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Concrete docs"]; "dummy.module.Base" -> "dummy.module.Concrete" [arrowsize=0.5,style="setlinewidth(0.5)"]; "param.parameterized.Parameterized" [fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",tooltip="Base class for named objects that support Parameters and message"]; }

Module that contains Parameterized classes and simple functions.

class dummy.module.Base(*, allowed_values, x, name)[source]#

Bases: Parameterized

Base docs.

Parameter Definitions


x = Number(bounds=(1, 100), default=2, inclusive_bounds=(True, True), label='X')

This is x.

allowed_values = List(bounds=(0, None), default=['a', 'b'], label='Allowed values')

This is allowed_values.

public_depends()[source]#
public_numpy(a, b)[source]#

Return something.

Parameters:
  • a (int) – Some integer.

  • b (str) – Some string.

Returns:

The return value.

Return type:

int

public_simple()[source]#
public_typed(a: int, b: str) int[source]#
class dummy.module.Concrete(*, foo, allowed_values, x, name)[source]#

Bases: Base

Concrete docs

Parameter Definitions


Parameters inherited from:

dummy.module.Base: x, allowed_values

foo = Callable(allow_None=True, label='Foo')

This is foo.

public_depends()[source]#
public_numpy(a, b)[source]#

Return something.

Parameters:
  • a (int) – Some integer.

  • b (str) – Some string.

Returns:

The return value.

Return type:

int

public_simple()[source]#
public_typed(a: int, b: str) int[source]#
dummy.module.function_numpy(a, b)[source]#

Return something.

Parameters:
  • a (int) – Some integer.

  • b (str) – Some string.

Returns:

The return value.

Return type:

int

dummy.module.function_typed(a: int, b: str) int[source]#