Fix link?
This commit is contained in:
parent
04666597b9
commit
e4e7cdfdb2
1 changed files with 5 additions and 5 deletions
|
@ -32,16 +32,16 @@ manager is defined from the html `<body>` tag, so each
|
|||
of this elements.
|
||||
|
||||
The second instruction do a lot of things at once. First, the method
|
||||
[`add_canvas`](references.md#Manager.add_canvas) add, like this name
|
||||
[`add_canvas`](references.md#Manager-add_canvas) add, like this name
|
||||
indicate, a [Canvas](references.md#Canvas) with a specific width and
|
||||
height associated to the [Manager](references.md#Manager) we created
|
||||
before. Next, the method [`add_axes`](references.md#Figure.add_axes) of
|
||||
the [figure](references.md#Canvas.figure) property of the canvas we
|
||||
before. Next, the method [`add_axes`](references.md#Figure-add_axes) of
|
||||
the [figure](references.md#Canvas-figure) property of the canvas we
|
||||
created add an [Axes](references.md#Axes) to this figure. Then, the
|
||||
[`plot`](references.md#Axes.plot) method take the first list of number
|
||||
[`plot`](references.md#Axes-plot) method take the first list of number
|
||||
as the x coordinate of points, the second as y ones and finally, an
|
||||
optional dictionary which define the style of the plot composed of each
|
||||
point.
|
||||
|
||||
Finally the [`draw`](references.md#Manager.draw) method render the plot
|
||||
Finally the [`draw`](references.md#Manager-draw) method render the plot
|
||||
we created to display it on the created canvas in the web page.
|
||||
|
|
Loading…
Reference in a new issue