Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
James Boulton committed Nov 6, 2024
1 parent 99913f4 commit 4117723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documents/Documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ Each line can be independently added, deleted or changed by the IoT device. Mult
```python
import dashio
chart = dashio.Chart("chart1", "Chart")
cl_line = dashio.ChartLine("Randon Data", dashio.ChartLineType.LINE, color=dashio.Color.BLUE)
cl_line = dashio.ChartLine("Random Data", dashio.ChartLineType.LINE, color=dashio.Color.BLUE)
data = np.random.normal(0, 20, 100)
cl_line.data = data.tolist()
chart.add_line("line_1", cl_line)
Expand Down

0 comments on commit 4117723

Please sign in to comment.