Skip to content

Commit

Permalink
fix reactivehtml issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcSkovMadsen committed Sep 25, 2023
1 parent 3471493 commit a99bad6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 0 additions & 3 deletions doc/how_to/custom_components/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ Build custom components using HTML, CSS and Javascript and without Javascript bu
How to create layouts using `ReactiveHTML`
:::

::::{grid} 1 2 2 3
:gutter: 1 1 1 2

:::{grid-item-card} {octicon}`brush;2.5em;sd-mr-1 sd-animate-grow50` Styling
:link: reactive_html/reactive_html_styling
:link-type: doc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ class ArcProgressIndicator(pn.reactive.ReactiveHTML):
indicator = ArcProgressIndicator(
progress=10,
style={"background": "#efebeb"},
styles={"background": "#efebeb"},
use_gradient=True,
text_style={"fill": "gray"},
format_options={"style": "percent"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ In this guide we will show you how to efficiently implement `ReactiveHTML` panes

## Creating a ChartJS Pane

In this example we will show you the basics of creating a
This example will show you the basics of creating a
[ChartJS](https://www.chartjs.org/docs/latest/) pane.

```{pyodide}
Expand Down Expand Up @@ -73,6 +73,8 @@ share your question and minimum, reproducible code example on

## Creating a Cytoscape Pane

This example will show you how to build a more advanced [CytoscapeJS](https://js.cytoscape.org/) pane.

```{pyodide}
import param
import panel as pn
Expand Down

0 comments on commit a99bad6

Please sign in to comment.