We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback


Overview

The Flutter HiLo Chart is similar to OHLC, but shows the high and low values of the stock over the given period of time. You can create beautiful, animated, real-time and high-performance hilo chart that also supports the interactive features such as zooming and panning, trackball, crosshair, tooltip and selection.

Beautiful Flutter HiLo Chart


Key features

Plots multiple series in chart

Multi series

Allows you to plot multiple series in a single chart to compare different data sets. Enabling legend and tooltip gives more information about the individual series.

Flutter chart shows the data labels

Data label

Data labels display information about data points. Add a template to display data labels with any custom widgets for more informative data labels. You can rotate a data label by its given angle.

Shows the customizable HiLo chart in Flutter

Customization

Customize the color, thickness, and dash array of the Flutter HiLo Chart using built-in APIs.


Code example

Easily get started with the Flutter High Low (HiLo) Chart using a few simple lines of DART code example as demonstrated below,

import 'package:flutter/material.dart';
import 'package:syncfusion_flutter_charts/charts.dart';

@override
    Widget build(BuildContext context) {
        return Scaffold(
            body: Center(
                child: Container(
                    child: SfCartesianChart(
                        primaryXAxis: DateTimeAxis(),
                        series: <CartesianSeries>[
                            // Renders bar chart
                            HiloSeries<SalesData, DateTime>(
                                dataSource: chartData,
                                xValueMapper: (SalesData sales, _) => sales.year,
                                lowValueMapper: (SalesData sales, _) => sales.low,
                                highValueMapper: (SalesData sales, _) => sales.high
                            )
                        ]
                    )
                )   
            )
        );
    }

Learning resources

Navigate to GitHub code used to configure the Flutter HiLo chart

GitHub Code

The Flutter HiLo chart configuration code is available in GitHub.

Navigate to the options available in User Guide to customize the Flutter HiLo chart

Flutter HiLo Chart User Guide

Learn available options to customize the Flutter HiLo Chart.

Navigate to the API references documentation of Flutter HiLo chart

Flutter HiLo Chart API Reference

Explore the Flutter HiLo Chart APIs.


Scroll up icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile
Live Chat Icon