docs(abstract-chart): reflect changes from Abstract API

This commit is contained in:
Janrey Licas
2024-01-01 17:44:09 +08:00
parent 89695717c2
commit 036af89988

View File

@ -12,6 +12,10 @@ ___
Sets the initial data for the chart. Sets the initial data for the chart.
self, auto_scale: bool = True, mode: PRICE_SCALE_MODE = 'normal', invert_scale: bool = False,
align_labels: bool = True, scale_margin_top: float = 0.2, scale_margin_bottom: float = 0.2,
border_visible: bool = False, border_color: Optional[str] = None, text_color: Optional[str] = None,
entire_text_only: bool = False, visible: bool = True, ticks_visible: bool = False, minimum_width: int = 0
Columns should be named: Columns should be named:
: `time | open | high | low | close | volume` : `time | open | high | low | close | volume`
@ -206,7 +210,7 @@ ___
```{py:method} price_scale(mode: PRICE_SCALE_MODE, align_labels: bool, border_visible: bool, border_color: COLOR, text_color: COLOR, entire_text_only: bool, ticks_visible: bool, scale_margin_top: float, scale_margin_bottom: float) ```{py:method} price_scale(auto_scale: bool = True, mode: PRICE_SCALE_MODE = 'normal', invert_scale: bool = False, align_labels: bool = True, scale_margin_top: float = 0.2, scale_margin_bottom: float = 0.2, border_visible: bool = False, border_color: Optional[str] = None, text_color: Optional[str] = None, entire_text_only: bool = False, visible: bool = True, ticks_visible: bool = False, minimum_width: int = 0)
Price scale options for the chart. Price scale options for the chart.
``` ```