High-Low (HiLo) Chart

Overview

A high-low (HiLo) chart is a chart type mostly used to illustrate movements in the price of a financial instrument over time. Each vertical line on the chart shows the price range (the highest and lowest prices) over one unit of time, e.g. one day or one hour. So, the HiLo chart looks like the OHLC chart, but does not have tick marks indicating the opening and closing prices.

HiLo is a series type that is predominantly used for demonstrating the stock market data, due to its specifics. So AnyChart HiLo series are also available in AnyStock – see the HiLo series in AnyStock article to learn more.

This article explains how to create a basic HiLo chart as well as configure settings that are specific to the type. You can also see the table below to get a brief overview of the HiLo chart's characteristics:

API
Classanychart.core.cartesian.series.HiLo
DATA
Data Fieldsx, high, low
Multiple SeriesYES
OPTIONS
StackedN/A
VerticalVertical HiLo
3DN/A
Error BarsN/A
SUPPORTED CHART PLOTS
PolarN/A
RadarN/A
ScatterN/A
StockStock HiLo
RELATED TYPES
OHLC
Japanese Candlestick
Stick
Range Area
Range Bar
Range Column
Range Spline Area
Range Step Area
SEE ALSO
General Settings

Quick Start

To create a HiLo chart, use the anychart.hilo() chart constructor. If you pass the data to this chart constructor, it creates a HiLo series.

To create a HiLo series explicitly, call the hilo() method.

The following sample demonstrates how a basic HiLo chart is created:

// create a data set
var data = anychart.data.set([
  ["January", 10000, 1000],
  ["February", 12000, 500],
  ["March", 18000, 3000],
  ["April", 11000, 4000],
  ["May", 9000, 6000]
]);

// create a chart
chart = anychart.hilo();

// create a HiLo series and set the data
var series = chart.hilo(data);

// set the chart title
chart.title("HiLo Chart: Basic Sample");

// set the container id
chart.container("container");

// initiate drawing the chart
chart.draw();

Playground

General Settings

In AnyChart there are many settings that are configured in the same way for all chart types, including the HiLo chart (for example, legend and interactivity settings).

Read the overview of general settings: General Settings.

Special Settings

Appearance

Here is a full list of methods used to configure visual settings that are available for the HiLo series:

You can learn more from the Appearance Settings section.

In the sample below, there are two HiLo series with some of the appearance settings configured:

// create the first series
var series1 = chart.hilo(seriesData_1);

// configure the visual settings of the first series
series1.stroke("#00cc99", 1, "10 5", "round");
series1.hoverStroke("#00cc99", 2, "10 5", "round");
series1.selectStroke("#00cc99", 4, "10 5", "round");

// create the second series
var series2 = chart.hilo(seriesData_2);

// configure the visual settings of the second series
series2.stroke("#0066cc");
series2.hoverStroke("#0066cc", 2);
series2.selectStroke("#0066cc", 4);

Playground

Labels

Labels are text or image elements that can be placed anywhere on any chart (you can enable them on a whole series or in a single point). For text labels, font settings and text formatters are available.

Tooltips

A Tooltip is a text box displayed when a point on a chart is hovered. There is a number of visual and other settings available: for example, you can edit the text by using font settings and text formatters, change the style of background, adjust the position of a tooltip, and so on.

Vertical HiLo

Most types of series in AnyChart can be drawn both in horizontal and vertical orientation: Vertical Charts.

Here is the information about creating Vertical HiLo series:

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