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 ASP.NET Core HiLo Chart is similar to OHLC (Open-High-Low-Close chart), but shows the high and low values of the stock over a given period of time.


Multi series

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


Data label

Data labels display information about data points. Add a template to display data labels with HTML elements such as images, DIV, and spans for more informative data labels. You can rotate a data label by its given angle.


Multiple axes

Use multiple axes to plot different data sets that widely vary from one other.


Customization

Customize the color and thickness of the HiLo chart using built-in APIs.


ASP.NET Core HiLo Chart Code Example

Easily get started with ASP.NET Core HiLo Chart by using a few lines of CSHTML and C# code, as demonstrated below. Also explore our ASP.NET Core HiLo Chart Example that shows how to render and configure the chart.

<ejs-chart id="container">
                <e-chart-primaryxaxis valueType="Category">                    
                </e-chart-primaryxaxis>                 
                <e-series-collection>
                    <e-series name="series1" xName="xValue" open="open" close="close" high="high" low="low" dataSource="ViewBag.dataSource"
                              type="@Syncfusion.EJ2.Charts.ChartSeriesType.Hilo">                         
                    </e-series>                     
                </e-series-collection>
 </ejs-chart>
public class HomeController : Controller
{
 public ActionResult Index()
          {  
            List<ChartData> chartData = new List<ChartData>
            {
             new ChartData { x= "South Korea", high = 39.4, low = 23, open = 6, close = 11 },
             new ChartData { x= "India", high = 3274, low = 19, open = 16, close = 21 },
             new ChartData { x= "Pakistan",high = 19.4, low = 14, open = 23, close = 24  },
             new ChartData { x= "Germany", high = 29.4, low = 16, open = 12, close = 15  },
             new ChartData { x= "Australia", high = 17.4, low = 18, open = 15, close = 23  },
             new ChartData { x= "Italy", high = 12.4, low = 18, open =12, close = 17  },
             new ChartData { x= "United Kingdom", high = 29.4, low = 13, open = 9, close = 21  },             
            };
            ViewBag.dataSource = chartData;            
            return View();
        }
}
  public class ChartData
      {
            public string x;
            public double high;   
            public double low; 
            public double close; 
            public double open;          
      }

Learning Resources

UG

HiLo Chart User Guide

Learn the available options to customize ASP.NET Core HiLo chart.

API

HiLo Chart API Reference

Explore the ASP.NET Core HiLo Chart APIs.


85+ ASP.NET CORE UI CONTROLS

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