@@ -91,12 +91,26 @@ Item style of candlestick.
9191
9292## emphasis(Object)
9393
94+ {{ use: partial-version(
95+ version = "5.5.2"
96+ ) }}
97+
9498Emphasis style of candlestick.
9599
96100{{ use: partial-emphasis-disabled(
97- prefix = "##"
101+ prefix = "##",
102+ defaultValue = true
98103) }}
99104
105+ ** Note:** The emphasis state is disabled in the candlestick series by default for historical reasons and needs to be explicitly enabled as follows.
106+
107+ ``` js
108+ emphasis: {
109+ // enable the emphasis state
110+ disabled: false
111+ }
112+ ```
113+
100114{{ use: partial-focus-blur-scope() }}
101115
102116### itemStyle(Object)
@@ -109,7 +123,7 @@ Emphasis style of candlestick.
109123## blur(Object)
110124
111125{{ use: partial-version(
112- version = "5.0.0 "
126+ version = "5.5.2 "
113127) }}
114128
115129Configurations of blur state. Available when [ emphasis.focus] ( ~series-candlestick.emphasis.focus ) is set.
@@ -137,7 +151,8 @@ Configurations of select state. Available when [selectedMode](~series-candlestic
137151
138152{{ use: partial-candlestick-item-style-detail(
139153 prefix = "###",
140- defaultBorderWidth = 2
154+ defaultBorderWidth = 2,
155+ option0Version = "5.5.2"
141156) }}
142157
143158{{ use: partial-selected-mode(
@@ -315,6 +330,12 @@ Fill color of bullish candle stick.
315330
316331<ExampleUIControlColor />
317332
333+ {{ if: ${option0Version} }}
334+ {{ use: partial-version(
335+ version = ${option0Version}
336+ ) }}
337+ {{ /if }}
338+
318339Fill color of bearish candle stick.
319340
320341{{ use: partial-color-desc() }}
@@ -331,6 +352,12 @@ Border color of bullish candle stick.
331352
332353<ExampleUIControlColor />
333354
355+ {{ if: ${option0Version} }}
356+ {{ use: partial-version(
357+ version = ${option0Version}
358+ ) }}
359+ {{ /if }}
360+
334361Border color of bearish candle stick.
335362
336363{{ use: partial-color-desc() }}
@@ -340,7 +367,7 @@ Border color of bearish candle stick.
340367<ExampleUIControlColor />
341368
342369{{ use: partial-version(
343- version = "5.4.1"
370+ version = ${option0Version|default( "5.4.1")}
344371) }}
345372
346373Border color of doji (when the open price is the same as the close price).
0 commit comments