From 0a4e2c30e977ff6073c9f6ef54b668cbc0e9f311 Mon Sep 17 00:00:00 2001 From: Boy Sugijakko <53815726+boysugi20@users.noreply.github.com> Date: Thu, 9 Jan 2025 18:13:52 +0700 Subject: [PATCH] Update abstract_chart.md Changed "color" paramter to "line_color" in trend_line() --- docs/source/reference/abstract_chart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/reference/abstract_chart.md b/docs/source/reference/abstract_chart.md index ada4a308..a40f7a54 100644 --- a/docs/source/reference/abstract_chart.md +++ b/docs/source/reference/abstract_chart.md @@ -89,7 +89,7 @@ ___ -```{py:method} trend_line(start_time: str | datetime, start_value: NUM, end_time: str | datetime, end_value: NUM, color: COLOR, width: int, style: LINE_STYLE, round: bool) -> Line +```{py:method} trend_line(start_time: str | datetime, start_value: NUM, end_time: str | datetime, end_value: NUM, line_color: COLOR, width: int, style: LINE_STYLE, round: bool) -> Line Creates a trend line, drawn from the first point (`start_time`, `start_value`) to the last point (`end_time`, `end_value`).