Skip to content

Commit 1c0f706

Browse files
committed
Fix description reference and update schema/types
1 parent 9716705 commit 1c0f706

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/traces/ohlc/attributes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module.exports = {
6565
line: {
6666
width: extendFlat({}, lineAttrs.width, {
6767
description: [
68-
lineAttrs.width,
68+
lineAttrs.width.description,
6969
'Note that this style setting can also be set per',
7070
'direction via `increasing.line.width` and',
7171
'`decreasing.line.width`.'

src/types/generated/schema.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3588,7 +3588,7 @@ export interface OhlcData {
35883588
line?: {
35893589
/** Sets the dash style of lines. Set to a dash type string (*solid*, *dot*, *dash*, *longdash*, *dashdot*, or *longdashdot*) or a dash length list in px (eg *5px,10px,2px,2px*). Note that this style setting can also be set per direction via `increasing.line.dash` and `decreasing.line.dash`. */
35903590
dash?: Dash;
3591-
/** [object Object] Note that this style setting can also be set per direction via `increasing.line.width` and `decreasing.line.width`. */
3591+
/** Sets the line width (in px). Note that this style setting can also be set per direction via `increasing.line.width` and `decreasing.line.width`. */
35923592
width?: number;
35933593
};
35943594
/** Sets the low values. */

test/plot-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53190,7 +53190,7 @@
5319053190
"editType": "style",
5319153191
"role": "object",
5319253192
"width": {
53193-
"description": "[object Object] Note that this style setting can also be set per direction via `increasing.line.width` and `decreasing.line.width`.",
53193+
"description": "Sets the line width (in px). Note that this style setting can also be set per direction via `increasing.line.width` and `decreasing.line.width`.",
5319453194
"dflt": 2,
5319553195
"editType": "style",
5319653196
"min": 0,

0 commit comments

Comments
 (0)