Enhancements:
- added the `create_histogram` method and the `Histogram` object. - added the `round` parameter to `trend_line` and `ray_line` - chart.set can now be given line data. Bug Fixes: - `NaN` values can now be given when setting data, and will leave a blank space in the data. - `resize` will now change the chart wrapper’s size as well as the chart itself.
This commit is contained in:
@ -5,9 +5,9 @@
|
||||
|
||||
The `Line` object represents a `LineSeries` object in Lightweight Charts and can be used to create indicators. As well as the methods described below, the `Line` object also has access to:
|
||||
|
||||
[`marker`](#marker), [`horizontal_line`](#AbstractChart.horizontal_line) [`hide_data`](#hide_data), [`show_data`](#show_data) and [`price_line`](#price_line).
|
||||
[`marker`](#marker), [`horizontal_line`](#AbstractChart.horizontal_line), [`hide_data`](#hide_data), [`show_data`](#show_data) and [`price_line`](#price_line).
|
||||
|
||||
Its instance should only be accessed from [create_line](#AbstractChart.create_line).
|
||||
Its instance should only be accessed from [`create_line`](#AbstractChart.create_line).
|
||||
___
|
||||
|
||||
|
||||
@ -36,7 +36,7 @@ This should be given as a Series object, with labels akin to the `line.set()` fu
|
||||
|
||||
___
|
||||
|
||||
```{py:method} line.delete()
|
||||
```{py:method} delete()
|
||||
|
||||
Irreversibly deletes the line.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user