Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Param usage in the Plot and Renderers guide #6001

Merged
merged 1 commit into from
Nov 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions examples/user_guide/Plots_and_Renderers.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@
"metadata": {},
"outputs": [],
"source": [
"print(curve_plot.state)\n",
"print(type(curve_plot.state), curve_plot.state)\n",
"curve_plot.state"
]
},
Expand Down Expand Up @@ -300,7 +300,7 @@
"metadata": {},
"source": [
"<div class=\"alert alert-success\">\n",
"Tip: To find more information about any HoloViews object use ``hv.help`` to print a detailed docstring.\n",
"Tip: To find more information about any HoloViews object use <code>hv.help</code> to print a detailed docstring.\n",
"</div>\n",
"\n",
"The valid figure display formats can be seen in the docstring of the Renderer or directly on the parameter:"
Expand All @@ -312,7 +312,7 @@
"metadata": {},
"outputs": [],
"source": [
"renderer.params('fig').objects"
"renderer.param['fig'].objects"
]
},
{
Expand Down Expand Up @@ -703,5 +703,5 @@
}
},
"nbformat": 4,
"nbformat_minor": 1
"nbformat_minor": 4
}
Loading