AnyStock Range Spline Area Series

Overview

Range Spline Area demonstrates how a range changes in time. There are two values to be set for this series: low and high. Find more about this series type in Range Spline Area Chart.

See also: Range Area.

AnyStock Range Spline Area Series Adjustment

Data

The data in stocks should be formatted as a table, there are two ways of setting it: as an array of arrays or as an array of objects.

Here is how to set data as an array of arrays, array contains values and then you map the data set to tell the component which column contains values.

// set the data
table = anychart.data.table();
table.addData([
    ["2000-01-01", 2, 6],
    ["2000-02-01", 2, 7],
    ["2000-03-01", 3, 10],
    ["2000-04-01", 5, 13],
    ["2000-05-01", 8, 17],
    ["2000-06-01", 11, 20],
    ["2000-07-01", 13, 22],
    ["2000-08-01", 13, 21],
    ["2000-09-01", 11, 19],
    ["2000-10-01", 8, 14],
    ["2000-11-01", 5, 10],
    ["2000-12-01", 5, 7],
]);
  
// map the data
mapping = table.mapAs();
mapping.addField('low', 1);
mapping.addField('high', 2);

// chart type
chart = anychart.stock();

// set the series
var series = chart.plot(0).rangeSplineArea(mapping);
series.name("Temperature Range");

Playground

The next sample demonstrates the data arranged as array of objects.

// set the data
table = anychart.data.table('x');
table.addData([
    {x: '2000-01-01', low: 2, high: 6},
    {x: '2000-02-01', low: 2, high: 7},
    {x: '2000-03-01', low: 3, high: 10},
    {x: '2000-04-01', low: 5, high: 13},
    {x: '2000-05-01', low: 8, high: 17},
    {x: '2000-06-01', low: 11, high: 20},
    {x: '2000-07-01', low: 13, high: 22},
    {x: '2000-08-01', low: 13, high: 21},
    {x: '2000-09-01', low: 11, high: 19},
    {x: '2000-10-01', low: 8, high: 14},
    {x: '2000-11-01', low: 5, high: 10},
    {x: '2000-12-01', low: 5, high: 7}
]);
  
// map the data
mapping = table.mapAs({'x:"x", 'high':"high", 'low': "low"});

// chart type
chart = anychart.stock();

// set the series
var series = chart.plot(0).rangeSplineArea(mapping);
series.name("Temperature Range");

Playground

Multi series

Simple multi-series chart:

// set the data
table = anychart.data.table();
table.addData([
    ["2000-01-01", 2, 6, -3, 4],
    ["2000-02-01", 2, 7, -2, 5],
    ["2000-03-01", 3, 10, 2, 10],
    ["2000-04-01", 5, 13, 7, 16],
    ["2000-05-01", 8, 17, 12, 22]
]);
  
// map the data
mapping_lon = table.mapAs();
mapping_lon.addField('low', 1);
mapping_lon.addField('high', 2);
mapping_ny = table.mapAs();
mapping_ny.addField('low', 3);
mapping_ny.addField('high', 4);

// chart type
chart = anychart.stock();

// set the series
var series_lon = chart.plot(0).rangeSplineArea(mapping_lon);
series_lon.name("Temperature Range (London 2000-2004)");

// set the series
var series_ny = chart.plot(0).rangeSplineArea(mapping_ny);
series_ny.name("Temperature Range (New York 2000-2004)");

Playground

Multi series

Multiple series on different plots:

// set the series
var series_lon = chart.plot(0).rangeSplineArea(mapping_lon);
series_lon.name("Temperature Range (London)");

// set the series
var series_ny = chart.plot(1).rangeSplineArea(mapping_ny);
series_ny.name("Temperature Range (New York)");

Playground

You can find all information about plots in the Plot tutorial.

Switching series type

You can change the type of the series to another compatible type. See the Series Type and series types table.

To switch the series use seriesType() method.

Visualization

Coloring

Use fill() to change fill color, highStroke() and lowStroke() to color lines:

// set the colors
series_lon.fill("#FFCC99 0.5");
series_ny.fill("#33CCCC 0.5");

Playground

Use the hatchFill() to set the hatch fill. See the HatchFill pattern list to choose the hatch style.

// set the colors
series_lon.fill("#fff 0.5");
series_ny.fill("#fff 0.5");
series_lon.hatchFill("horizontalBrick");
series_ny.hatchFill("confetti");

Playground

Hovered state

Use the dateTimeHighlighter() method to adjust crosshair.

// crosshair settings
chart.plot(0).dateTimeHighlighter("#FF0000", 2, "8 2");

Playground

Find more about crosshair in the Crosshair article.

You are looking at an outdated v7 version of this document. Switch to the v8 version to see the up to date information.