Skip to content

Commit

Permalink
Merge branch 'master' into dom/repeat-macro
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Mar 10, 2020
2 parents 496a556 + bb186c0 commit bcf9b8b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build/vega-lite-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4663,7 +4663,7 @@
"description": "Mark Config"
},
"numberFormat": {
"description": "D3 Number format for guide labels and text marks. For example \"s\" for SI units. Use [D3's number format pattern](https://github.com/d3/d3-format#locale_format).",
"description": "D3 Number format for guide labels and text marks. For example `\"s\"` for SI units. Use [D3's number format pattern](https://github.com/d3/d3-format#locale_format).",
"type": "string"
},
"padding": {
Expand Down Expand Up @@ -4715,7 +4715,7 @@
"description": "Tick-Specific Config"
},
"timeFormat": {
"description": "Default time format for raw time values (without time units) in text marks, legend labels and header labels.\n\n__Default value:__ `\"%b %d, %Y\"`\n__Note:__ Axes automatically determine format each label automatically so this config would not affect axes.",
"description": "Default time format for raw time values (without time units) in text marks, legend labels and header labels.\n\n__Default value:__ `\"%b %d, %Y\"`\n__Note:__ Axes automatically determine the format for each label automatically so this config does not affect axes.",
"type": "string"
},
"title": {
Expand Down
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,15 +147,15 @@ export interface VLOnlyConfig {
fieldTitle?: 'verbal' | 'functional' | 'plain';

/**
* D3 Number format for guide labels and text marks. For example "s" for SI units. Use [D3's number format pattern](https://github.com/d3/d3-format#locale_format).
* D3 Number format for guide labels and text marks. For example `"s"` for SI units. Use [D3's number format pattern](https://github.com/d3/d3-format#locale_format).
*/
numberFormat?: string;

/**
* Default time format for raw time values (without time units) in text marks, legend labels and header labels.
*
* __Default value:__ `"%b %d, %Y"`
* __Note:__ Axes automatically determine format each label automatically so this config would not affect axes.
* __Note:__ Axes automatically determine the format for each label automatically so this config does not affect axes.
*/
timeFormat?: string;

Expand Down
Empty file removed src/signal.ts
Empty file.

0 comments on commit bcf9b8b

Please sign in to comment.