highcharts
Version:
JavaScript charting framework
198 lines (197 loc) • 8.38 kB
TypeScript
/*!*
*
* Copyright (c) Highsoft AS. All rights reserved.
*
*!*/
import * as Highcharts from "../highcharts.src";
declare module "../highcharts.src" {
/**
* (Highmaps) A tiledwebmap series allows user to display dynamically joined
* individual images (tiles) and join them together to create a map.
*
* Configuration options for the series are given in three levels:
*
* 1. Options for all series in a chart are defined in the
* plotOptions.series object.
*
* 2. Options for all `tiledwebmap` series are defined in
* plotOptions.tiledwebmap.
*
* 3. Options for one single series are given in the series instance array.
* (see online documentation for example)
*
* **TypeScript:**
*
* - type option should always be set, otherwise a broad set of unsupported
* options is allowed.
*
* - when accessing an array of series, the combined set of all series types
* is represented by Highcharts.SeriesOptionsType . Narrowing down to the
* specific type can be done by checking the `type` property. (see online
* documentation for example)
*/
interface PlotTiledwebmapOptions {
/**
* (Highmaps) Accessibility options for a series.
*/
accessibility?: Highcharts.SeriesAccessibilityOptionsObject;
/**
* (Highmaps) An additional class name to apply to the series' graphical
* elements. This option does not replace default class names of the
* graphical element. Changes to the series' color will also be
* reflected in a chart's legend and tooltip.
*/
className?: string;
/**
* (Highmaps) A reserved subspace to store options and values for
* customized functionality. Here you can add additional data for your
* own event callbacks and formatter callbacks.
*/
custom?: Highcharts.Dictionary<any>;
/**
* (Highmaps) The mapping between the data table and the series data
* points. This is used in conjunction with the `dataTable` option (on
* chart or series level) to map columns from the data table to the
* properties of the data points. The keys of the `dataMapping` object
* correspond to the properties of the data points (e.g. `x`, `y`,
* `name`), and the values are objects that specify which column from
* which data table to use for that property.
*
* The keys can also be nested paths, for example `dataLabel.format`, to
* map to nested properties of the data points.
*
* The values can also be strings, in which case they are interpreted as
* column id's from the first data table.
*
* A typical use case is that multiple series share a common column,
* like `name` or `x`. In this case, to avoid repetition, the common
* column can be applied in `plotOptions.series.dataMapping` and the
* individual series can specify only the columns that are unique to
* them.
*
* The series name defaults to the column ID of the main data column in
* the mapping. The main data column is typically the `y` data for
* cartesian series, or `value` for map series. For example, if the
* mapping is `{ y: 'Cost' }`, the series name will be `Cost`. (see
* online documentation for example)
*
* If the columns of the DataTable have keys matching the series keys,
* the data mapping is not necessary. For example, this DataTable will
* connect directly to the series' `x` and `y` keys: (see online
* documentation for example)
*/
dataMapping?: Highcharts.DataMappingOptionsObject;
/**
* (Highmaps) Options for a specific series-level data table or an array
* of data tables. The `dataTable` option can be either a configuration
* object or an instance of the `DataTable` class. If a `DataTable`
* instance is passed, it will be used directly. If a configuration
* object or an array is passed, a new `DataTable` instance will be
* created based on the provided configuration.
*/
dataTable?: (Highcharts.DataTable|Highcharts.DataTableOptionsObject|Array<(Highcharts.DataTable|Highcharts.DataTableOptionsObject)>);
/**
* (Highmaps) Deprecated. Use
* plotOptions.series.accessibility.description instead.
*
* A description of the series to add to the screen reader information
* about the series.
*
* @deprecated 8.0.0
*/
description?: string;
/**
* (Highmaps) General event handlers for the series items. These event
* hooks can also be attached to the series at run time using the
* `Highcharts.addEvent` function.
*/
events?: Highcharts.SeriesEventsOptionsObject;
/**
* (Highmaps) Highlight only the hovered point and fade the remaining
* points.
*
* Scatter-type series require enabling the 'inactive' marker state and
* adjusting opacity. Note that this approach could affect performance
* with large datasets.
*/
inactiveOtherPoints?: boolean;
/**
* (Highmaps) When set to `false` will prevent the series data from
* being included in any form of data export.
*
* Since version 6.0.0 until 7.1.0 the option was existing undocumented
* as `includeInCSVExport`.
*/
includeInDataExport?: boolean;
/**
* (Highmaps) What type of legend symbol to render for this series. Can
* be one of `areaMarker`, `lineMarker` or `rectangle`.
*/
legendSymbol?: Highcharts.OptionsLegendSymbolValue;
/**
* (Highmaps) The line cap used for line ends and line joins on the
* graph.
*/
linecap?: string;
/**
* (Highmaps) Opacity of a series parts: line, fill (e.g. area) and
* dataLabels.
*/
opacity?: number;
/**
* (Highmaps) Deprecated. Use
* series.accessibility.point.descriptionFormat instead.
*
* Same as accessibility.point.descriptionFormat, but for an individual
* series. Overrides the chart wide configuration.
*
* @deprecated 12.6.0
*/
pointDescriptionFormat?: Function;
/**
* (Highmaps) Provider options for the series.
*/
provider?: Highcharts.PlotTiledwebmapProviderOptions;
/**
* (Highmaps) Whether to display this particular series or series type
* in the legend. Standalone series are shown in legend by default, and
* linked series are not. Since v7.2.0 it is possible to show series
* that use colorAxis by setting this option to `true`.
*/
showInLegend?: boolean;
/**
* (Highmaps) Deprecated. Use series.accessibility.keyboardNavigation
* instead.
*
* If set to `true`, the accessibility module will skip past the points
* in this series for keyboard navigation.
*
* @deprecated 8.0.0
*/
skipKeyboardNavigation?: boolean;
/**
* (Highmaps) A collection of options for different series states.
*
* In addition to the options documented under each state, any option
* from the parent series type can be set, with exception of `data` and
* `states`.
*/
states?: Highcharts.SeriesStatesOptionsObject;
/**
* (Highmaps) Set the initial visibility of the series.
*/
visible?: boolean;
/**
* (Highmaps) Define the z index of the series.
*/
zIndex?: number;
/**
* (Highmaps) Whether to zoom non-cartesian series. If `chart.zooming`
* is set, the option allows to disable zooming on an individual
* non-cartesian series. By default zooming is enabled for all series.
*
* **Note**: This option works only for non-cartesian series.
*/
zoomEnabled?: boolean;
}
}