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.

x = param.Number(allow_refs=False, bounds=(1, 100), default=2, inclusive_bounds=(True, True), label=’X’, nested_refs=False, rx=<param.reactive.reactive_ops object at 0x7f0b65db1a50>)

This is x.

allowed_values = param.List(allow_refs=False, bounds=(0, None), default=[‘a’, ‘b’], label=’Allowed values’, nested_refs=False, rx=<param.reactive.reactive_ops object at 0x7f0b65dcb310>)

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

Parameters inherited from:

dummy.module.Base: x, allowed_values

foo = param.Callable(allow_None=True, allow_refs=False, label=’Foo’, nested_refs=False, rx=<param.reactive.reactive_ops object at 0x7f0b65d81490>)

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]#