Skip to content

Commit c5c084b

Browse files
authored
fix(legend): add third mode, discrete, to LegendType (#3957)
## Motivation - Fix #3954 ## Changes - Adds a type to align with the runtime behavior, + docstring update https://github.com/vega/vega/blob/ddd2bbff9897415be968fb60e2afa6c695c9eec4/packages/vega-parser/src/parsers/legend.js#L35-L36 - [x] (Checked w/ @jheer to confirm if this is the intended behavior based on the commit that introduced this, ddd2bbf ## Notes - Broader question: would we be interested to have portions of the vega sub-packages converted to TS so we don't have to sync `.d.ts` files with JS source code as a separate step?
1 parent 938abf2 commit c5c084b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/docs/legends.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Properties for specifying a legend. Legends accept one or more [scales](../scale
1313

1414
| Property | Type | Description |
1515
| :------------ |:------------------------------:| :------------- |
16-
| type | {% include type t="String" %} | The type of legend to include. One of `symbol` for discrete symbol legends, or `gradient` for a continuous color gradient. If `gradient` is used only the _fill_ or _stroke_ scale parameters are considered. If unspecified, the _type_ will be inferred based on the scale parameters used and their backing scale types.|
16+
| type | {% include type t="String" %} | The type of legend to include. One of `"symbol"` for discrete symbol legends, `"gradient"` for a continuous color gradient, or `"discrete"` for a discrete color gradient. If gradient or discrete are used, only the fill or stroke scale parameters are considered. If unspecified, the type will be inferred based on the scale parameters used and their backing scale types.|
1717
| direction | {% include type t="String" %} | The direction of the legend, one of `"vertical"` (default) or `"horizontal"`.|
1818
| orient | {% include type t="String" %} | The orientation of the legend, determining where the legend is placed relative to a chart's data rectangle (default `right`). See the [legend orientation reference](#orientation). |
1919
| fill | {% include type t="String" %} | The name of a scale that maps to a fill color. |

packages/vega-parser/src/parsers/guides/constants.js

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export const GuideTitleStyle = 'guide-title';
2222
export const GroupTitleStyle = 'group-title';
2323
export const GroupSubtitleStyle = 'group-subtitle';
2424

25+
/** All values of LegendType */
2526
export const Symbols = 'symbol';
2627
export const Gradient = 'gradient';
2728
export const Discrete = 'discrete';

packages/vega-typings/types/spec/legend.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export interface GuideEncodeEntry<T> {
4040
hover?: T;
4141
}
4242

43-
export type LegendType = 'gradient' | 'symbol';
43+
export type LegendType = 'gradient' | 'symbol' | 'discrete';
4444

4545
export type LegendOrient =
4646
| 'none'
@@ -63,7 +63,7 @@ export interface Legend extends BaseLegend {
6363
opacity?: string;
6464

6565
/**
66-
* The type of legend to include. One of `"symbol"` for discrete symbol legends, or `"gradient"` for a continuous color gradient. If gradient is used only the fill or stroke scale parameters are considered. If unspecified, the type will be inferred based on the scale parameters used and their backing scale types.
66+
* The type of legend to include. One of `"symbol"` for discrete symbol legends, `"gradient"` for a continuous color gradient, or `"discrete"` for a discrete color gradient. If gradient or discrete are used, only the fill or stroke scale parameters are considered. If unspecified, the type will be inferred based on the scale parameters used and their backing scale types.
6767
*/
6868
type?: LegendType;
6969

0 commit comments

Comments
 (0)