Skip to content

Interface: ContourFilledOptions

Defined in: charts/fields.ts:172

A grid of scalar values sampled at the nodes of a regular lattice.

Extends

Properties

colormap?

ts
optional colormap?: ColormapSpec;

Defined in: charts/fields.ts:175


cols

ts
cols: number;

Defined in: charts/fields.ts:22

Inherited from

ScalarField.cols


domain?

ts
optional domain?: Range;

Defined in: charts/fields.ts:177

Value range mapped to the colormap. Defaults to the level span.


extent

ts
extent: {
  x: Range;
  y: Range;
};

Defined in: charts/fields.ts:24

x

ts
x: Range;

y

ts
y: Range;

Inherited from

ScalarField.extent


levels?

ts
optional levels?: number | number[];

Defined in: charts/fields.ts:174

Explicit band boundaries, or a count of evenly spaced bands. Default 8.


lineColor?

ts
optional lineColor?: string;

Defined in: charts/fields.ts:182


lines?

ts
optional lines?: boolean;

Defined in: charts/fields.ts:181

Also stroke the band boundaries. Default false.


name?

ts
optional name?: string;

Defined in: charts/fields.ts:184

Series name — used as the colorbar caption.


opacity?

ts
optional opacity?: number;

Defined in: charts/fields.ts:179

Fill opacity, 0..1. Default 1.


renderType?

ts
optional renderType?: RenderType;

Defined in: charts/fields.ts:185


rows

ts
rows: number;

Defined in: charts/fields.ts:23

Inherited from

ScalarField.rows


values

ts
values: ArrayLike<number>;

Defined in: charts/fields.ts:21

Row-major, length cols * rows; row 0 is at the bottom of extent.y.

Inherited from

ScalarField.values


yAxis?

ts
optional yAxis?: string;

Defined in: charts/fields.ts:186

MIT licensed. WebGL2 required.