Skip to content

Commit

Permalink
Made data range link more obvious
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jul 2, 2018
1 parent 2706b6a commit b0dd082
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/user_guide/Linking_Plots.ipynb
Expand Up @@ -32,8 +32,8 @@
"source": [
"from holoviews.plotting.links import DataLink\n",
"\n",
"scatter1 = hv.Scatter(np.random.randn(1000, 2))\n",
"scatter2 = hv.Scatter(np.random.randn(1000, 2)*2, 'x2', 'y2')\n",
"scatter1 = hv.Scatter(np.arange(100))\n",
"scatter2 = hv.Scatter(np.arange(100)[::-1], 'x2', 'y2')\n",
"\n",
"DataLink(scatter1, scatter2)\n",
"\n",
Expand Down

0 comments on commit b0dd082

Please sign in to comment.