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

Trusted by the world’s leading companies

Syncfusion Trusted Companies

Overview

ASP.NET Core Stock Chart is a well-crafted, easy-to-use financial charting package. Track and visualize the stock price of any company over a specific period of time using charting (such as Candlestick, OHLC, HiLo, and more) and range tools. The component comes with a lot of features such as zooming, panning, tooltip, crosshair, trackball, period selector, range selector, and events to make the stock charts more interactive.


Why choose Syncfusion ASP.NET Core Stock Chart?

ASP.NET Core stock chart high performance.

High performance

Several data rendering optimizations have been used to achieve the best possible efficiency when plotting large amounts of data and managing high-frequency, real-time data.

ASP.NET Core stock chart elegant animation.

Elegant animation

The Stock Chart for ASP.NET Core provides fluid animation to present data with smooth transitions.

ASP.NET Core interactive stock chart.

Interactive stock chart

The tooltip and crosshair cursor allow users to interact with the chart and obtain detailed information about data points.

ASP.NET Core stock chart stock events.

Stock events

Visualize stock events to display many types of market events on the chart.

ASP.NET Core stock chart admirable feature set.

Admirable feature set

The ASP.NET Core Stock Chart supports zooming and panning, multiple series, period selector, range selector, trendlines, and indicators.

ASP.NET Core stock chart adapts to any resolution.

Adapts to any resolution

Stock Chart has a highly responsive layout and an optimized design for desktops, touchscreens, and phones. It works well on all mobile phones that use iOS, Android, or Windows OS.

ASP.NET Core stock chart customizable themes.

Attractive, customizable themes

Cutting-edge design with several built-in themes, such as Fluent, Tailwind CSS, Bootstrap, Material, and Fabric. Utilize the online Theme Studio tool to customize themes of stock chart easily.

ASP.NET Core stock chart global and local.

Globalization and localization

Enable users from different locales to use the control by formatting dates, currency, and numbering to suit preferences.


ASP.NET Core Stock Chart Code Example

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

@using Syncfusion.EJ2
@section ControlsSection{

    <div class="control-section" align="center">
        <div id="container">
            <ejs-stockchart id="stockchartdefault" load="stockload" title="AAPL Stock Price" tooltipRender="tooltipRender">
                <e-stockchart-chartarea>
                    <e-stockchartarea-border width="0"></e-stockchartarea-border>
                </e-stockchart-chartarea>
                <e-stockchart-primaryxaxis>
                    <e-majorgridlines width="0"></e-majorgridlines>
                    <e-crosshairtooltip enable="true"></e-crosshairtooltip>
                </e-stockchart-primaryxaxis>
                <e-stockchart-primaryyaxis>
                    <e-linestyle width="0"></e-linestyle>
                    <e-majorticklines width="0"></e-majorticklines>
                </e-stockchart-primaryyaxis>
                <e-stockchart-tooltipsettings enable="true"></e-stockchart-tooltipsettings>
                <e-stockchart-crosshairsettings enable="true"></e-stockchart-crosshairsettings>
                <e-stockchart-series-collection>
                    <e-stockchart-series type='Candle'> </e-stockchart-series>
                </e-stockchart-series-collection>
            </ejs-stockchart>
        </div>
    </div>
    <script src="~/scripts/chart/indicator-data.js"></script>
    <script>
        var data = chartData;
        function stockload(args) {

            args.stockChart.series[0].dataSource = data;
        }

        function tooltipRender(args) {
            if (args.text.split('<br/>')[4]) {
                let target = parseFloat(args.text.split('<br/>')[4].split('<b>')[1].split('</b>')[0]);
                let value = (target / 100000000).toFixed(1) + 'B';
                args.text = args.text.replace(args.text.split('<br/>')[4].split('<b>')[1].split('</b>')[0], value);
            }

        }
    </script>
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;

namespace EJ2CoreSampleBrowser.Controllers.StockChart
{
    public partial class StockChartController : Controller
    {
        public IActionResult Default()
        {
            return View();
        }
    }
}

Interactive Chart

The end-user experience is greatly enhanced by including a set of interactive features such as zooming, and panning, crosshair, trackball, events, and selection..

Interactive chart in ASP.NET Core Stock Chart


Candlestick with volume in ASP.NET Core Stock Chart

Candlestick with volume

ASP.NET Core Candlestick Chart allows analyzing both price action and volume at a glance.


Multiple series

Plot multiple series in a single chart to compare different stock values. Enabling a legend and a tooltip gives more information about an individual series.

Multiple series in ASP.NET Core Stock Chart


Plot band in ASP.NET Core Stock Chart

Plot band

Draw special attention to any region of the chart or graph with the help of strip lines.


Range selector

Use the range selector to filter a date range for data that needs to be visualized.

Range selector in ASP.NET Core Stock Chart


Period selector in ASP.NET Core Stock Chart

Period selector

Use the period selector to choose a range of data points at predetermined intervals with a single click.


Series type

Visualize data using different series types like candle, OHLC, HiLo, line, spline, area, and spline area. The series type can be changed using the series options in the period selector.

Series type in ASP.NET Core Stock Chart


Legend in ASP.NET Core Stock Chart

Legend

Legends provide additional information helpful in identifying individual data or series in a stock chart.


Indicators

Use technical indicators to analyze the past and predict the future market trends based on historic price, volume, or open interest. The Asp Net.Core Stock Chart supports 10 different types of indicators. You can add these indicators to a stock chart using the indicator option in the period selector.

Indicators in ASP.NET Core Stock Chart


Trendlines in ASP.NET Core Stock Chart

Trendlines

Predict future trends with predetermined data for any measurement such as the stock market or target revenue with the help of trendlines. You can add trendlines to a stock chart using the trendlines options in the period selector.


Export ASP.NET Core Stock Chart to PDF documents or to image formats such as SVG, PNG, and JPEG as well as export chart data to XLSX and CSV formats in the client-side. Print the rendered stock charts and graphs directly from the browser.

Print and export in ASP.NET Core Stock Chart


Axis type in ASP.NET Core Stock Chart

Axis type

Visualize data using different axis types like numeric, logarithmic, date-time, and date-time category. And this chart’s axis elements can be customized further to make an axis more readable.


Accessibility

Keyboard navigation in ASP.NET Core Stock Chart

Keyboard navigation

Every element in ASP.NET Core Stock Charts is keyboard accessible. Major features like tooltip, trackball, legend, collapse, zoom, and pan can be used through keyboard commands alone. No mouse interaction is required. This helps in creating highly accessible applications.

Accessibility and screen reader support in ASP.NET Core Stock Chart

Screen reader

The ASP.NET Core Stock Chart view has complete WAI-ARIA accessibility support. The Stock Chart UI includes high-contrast visual elements that help visually impaired people to have the best viewing experience. Also, valid UI descriptions are easily accessible through assistive technologies such as screen readers.

Show right-to-left language in ASP.NET Core Stock Chart

Right to left (RTL)

Right-to-left rendering allows displaying the text and layout of the Stock Chart from right to left. This improves the user experience and accessibility for RTL languages.





Other supported frameworks

Stock Chart is also available in the Blazor, Angular, React, Vue, and JavaScript frameworks. Check out the Stock Chart for different platforms from the following links.

Supported browsers

The ASP.NET Core Stock Chart works well with all modern web browsers: Chrome, Firefox, Edge, Safari, and IE11. It requires MomentJS poly-fill to make the scheduler time zone conversions work further with the IE11 browser and iOS mobile versions.

Supported browsers

85+ ASP.NET CORE UI CONTROLS

Frequently Asked Questions

  • Visualize and analyze stock data with candlestick, OHLC, HiLo Chart.
  • Interact and explore stock charts with features such as period selector, range selector, zoom and pan, crosshair, tooltip, trackball, and more.
  • Flexible UI customization of period and range selector with fluent APIs.
  • One of the best ASP.NET Core Stock Chart in the market that offers feature-rich UI to interact with the software.
  • 10 Technical indicators and 4+ Financial Chart types with elegant animation.
  • Simple configuration and API.
  • Supports all modern browsers.
  • Mobile-touch friendly and responsive.
  • Expansive learning resources such as demos and documentation to learn quickly and get started with ASP.NET Core Stock Chart.

You can find our ASP.NET Core Stock Chart demo, which demonstrates how to render and configure the Stock Chart.

No, this is a commercial product and requires a paid license. However, a free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue, 5 or fewer developers, and 10 or fewer total employees.

A good place to start would be our comprehensive getting started documentation.

Our Customers Love Us

Having an excellent set of tools and a great support team, Syncfusion reduces customers’ development time.
Here are some of their experiences.

Rated by users across the globe

Transform your applications today by downloading our free evaluation version Download Free Trial

Awards

Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion is proud to hold the following industry awards.

Up arrow icon
Live Chat Icon For mobile