Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fb345a4

Browse files
committed
Create 2015-06-29-disable-hover.html
1 parent 6a7ebab commit fb345a4

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Disabling Hover Text
3+
plot_url: https://plot.ly/~PlotBot/186
4+
language: python
5+
suite: annotations
6+
order: 6
7+
---
8+
# Learn about API authentication here: https://plot.ly/python/getting-started
9+
# Find your api_key here: https://plot.ly/settings/api
10+
11+
import plotly.plotly as py
12+
13+
trace = dict(
14+
x=[1, 2, 3,],
15+
y=[10, 30, 15],
16+
type='scatter',
17+
name='first trace',
18+
hoverinfo='none'
19+
)
20+
21+
url = py.plot([trace], filename='hoverinfo=none', validate=False)

0 commit comments

Comments
 (0)