No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

The component failed to render properly, likely due to a configuration issue in Storybook. Here are some common causes and how you can address them:

  1. Missing Context/Providers: You can use decorators to supply specific contexts or providers, which are sometimes necessary for components to render correctly. For detailed instructions on using decorators, please visit the Decorators documentation.
  2. Misconfigured Webpack or Vite: Verify that Storybook picks up all necessary settings for loaders, plugins, and other relevant parameters. You can find step-by-step guides for configuring Webpack or Vite with Storybook.
  3. Missing Environment Variables: Your Storybook may require specific environment variables to function as intended. You can set up custom environment variables as outlined in the Environment Variables documentation.

WebChartTemporalSeries

Describes the properties related to a temporal series

Referenced by:

Properties

PropertyDetails
binTemporalData

Whether to use the time properties to bin the temporal data.


If set to false the timeIntervalSize and timeIntervalUnits properties can be used to set the date axis base interval.


The type of this property is: boolean.

timeIntervalUnits

The time unit that corresponds to the timeIntervalSize. Valid options include seconds, minutes, hours, days, weeks, months, and years.


The type of this property is: string.


Must be one of the following values: esriTimeUnitsDays, esriTimeUnitsHours, esriTimeUnitsMinutes, esriTimeUnitsMonths, esriTimeUnitsSeconds, esriTimeUnitsWeeks, esriTimeUnitsYears.

timeIntervalSize

The span of time that will be binned or aggregated together. This property must be used in conjunction with timeIntervalUnits.


The type of this property is: number.

timeAggregationType

The time interval alignment type. Valid options include equalIntervalsFromStartTime and equalIntervalsFromEndTime.


The type of this property is: string.


Must be one of the following values: equalIntervalsFromEndTime, equalIntervalsFromStartTime.

trimIncompleteTimeInterval

Determines whether incomplete time intervals at the start or end of the data span (depending on the timeAggregationType) will be removed from the chart.


Incomplete intervals on a chart can cause misleading results in which the period in question is under- or overreported due to a different amount of time in the interval.


Setting true indicates to trim these incomplete intervals. Setting false does not trim incomplete intervals.


The type of this property is: boolean.

nullPolicy

How summarized bins returning a null value are displayed. Supported options are:
- null, zero, and interpolate for line series
- null and zero for bar series


The type of this property is: string.


Must be one of the following values: interpolate, null, zero.