ASP.NET Core OHLC chart is like a candle chart. The horizontal lines at the left and right are used to show open and close values of the stock, and the vertical line represents high and low values. They are easily customizable and supports interactive features such as trackball, tooltip, selection, and zooming to track information of the data.
Plot multiple series in a single chart to compare different data sets. Enabling legend and tooltip gives more information about the individual series.
Render the stock prices in different panes of a chart. Visualize the OHLC values in one pane and the volume in another pane.
You can use the range selector along with a financial chart to filter and navigate through a large number of data points.
Customize bull and bear colors.
Zoom and pan when dealing with large amounts of data to visualize data points in any region.
Easily get started with ASP.NET Core OHLC Chart by using a few lines of CSHTML and C# code, as demonstrated below. Also explore our ASP.NET Core OHLC 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.HiloOpenClose">
</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;
}
Learn the available options to customize ASP.NET Core OHLC chart.
Explore the ASP.NET Core OHLC Chart APIs.