Skip to content

Added description to widget example programs except Cursor and Menu #9478

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

Merged
merged 3 commits into from
Oct 21, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fixed documentation typos in the widget example programs
  • Loading branch information
ash13 committed Oct 19, 2017
commit 7f5c07b8ada3a2edf04872f05d7863f85d3589e9
2 changes: 1 addition & 1 deletion examples/widgets/buttons.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
=======
Buttons
=======
An pretty cool example to show how to use buttons widget.The program shows a simple GUI with a sine wave changing its frequency.The next and previous button widget used here helps shows the wave with new frequency.
The program shows a simple GUI with a sine wave changing its frequency.The next and previous button widget used here helps shows the wave with new frequency.
"""

import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion examples/widgets/lasso_selector_demo_sgskip.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
===================
Lasso Selector Demo
===================
An example to show the Lasso Selector widget. The graph shows a scatter plot. You can select a few points by drawing a lasso loop around the points on the graphjust like any other Lasso tool. To draw, just click on the graph,hold and drag it around the points you need to select.
An example to show the use of Lasso Selector widget. The graph shows a scatter plot. You can select a few points by drawing a lasso loop around the points on the graphjust like any other Lasso tool. To draw, just click on the graph,hold and drag it around the points you need to select.

"""
from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion examples/widgets/multicursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
===========
Multicursor
===========
An example to show multiple cursors. The graph has two subplots and on hovering over the cursor over the two seperate graphs, the values are shown respectively.
A program to show multiple cursors. The graph has two subplots and on hovering the cursor over the two seperate graphs, the values are shown respectively.
"""
import numpy as np
import matplotlib.pyplot as plt
Expand Down
2 changes: 1 addition & 1 deletion examples/widgets/radio_buttons.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
=============
Radio Buttons
=============
An example to show how radio buttons widget can be used in the plots. The radio button in this program helps you choose one of the three different sine waves to be shown in the plot.
A program to show how radio buttons widget can be used in the plots. The radio button in this program helps you choose one of the three different sine waves to be shown in the plot.
"""
import numpy as np
import matplotlib.pyplot as plt
Expand Down
55 changes: 0 additions & 55 deletions examples/widgets/slider_demo1.py

This file was deleted.

2 changes: 1 addition & 1 deletion examples/widgets/textbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
=======
Textbox
=======
An example to show the use of textbox widget. You can use it mention any text that needs to be displayed or formulas or values. You can further use it to take input from the user, and use a submit button to create plots using the given input(Just a use case).
It shows the use of textbox widget. You can use it mention any text that needs to be displayed or formulas or values. You can further use it to take input from the user, and use a submit button to create plots using the given input(Just a use case).
"""

import numpy as np
Expand Down