ByteScout Data Extraction Suite - C# - Add stock chart with spreadsheet sdk - ByteScout

ByteScout Data Extraction Suite – C# – Add stock chart with spreadsheet sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Data Extraction Suite – C# – Add stock chart with spreadsheet sdk

How to add stock chart with spreadsheet sdk in C# and ByteScout Data Extraction Suite

This code in C# shows how to add stock chart with spreadsheet sdk with this how to tutorial

The sample source codes on this page shows how to add stock chart with spreadsheet sdk in C#. ByteScout Data Extraction Suite is the bundle that includes three SDK tools for data extraction from PDF, scans, images and from spreadsheets: PDF Extractor SDK, Data Extraction SDK, Barcode Reader SDK. It can be applied to add stock chart with spreadsheet sdk using C#.

The SDK samples given below describe how to quickly make your application do add stock chart with spreadsheet sdk in C# with the help of ByteScout Data Extraction Suite. Follow the instructions from scratch to work and copy the C# code. Applying C# application mostly includes various stages of the software development so even if the functionality works please test it with your data and the production environment.

The trial version of ByteScout Data Extraction Suite can be downloaded for free from our website. It also includes source code samples for C# and other programming languages.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
using System.Diagnostics; using Bytescout.Spreadsheet; using Bytescout.Spreadsheet.Charts; namespace CSharp { class Program { static void Main(string[] args) { // Create new Spreadsheet object Spreadsheet spreadsheet = new Spreadsheet(); spreadsheet.RegistrationName = "demo"; spreadsheet.RegistrationKey = "demo"; // Add new worksheet Worksheet sheet = spreadsheet.Workbook.Worksheets.Add("Sample"); // Add few random numbers for (int i = 1; i < 6; i++) { sheet[i, 0].Value = 39082 + i; sheet[i, 0].ValueDataTypeByNumberFormatString = Bytescout.Spreadsheet.Constants.NumberFormatType.DateTime; } sheet[1, 1].Value = 41301; sheet[1, 2].Value = 24.3; sheet[1, 3].Value = 27.2; sheet[1, 4].Value = 23.49; sheet[1, 5].Value = 25.45; sheet[2, 1].Value = 35203; sheet[2, 2].Value = 25.4; sheet[2, 3].Value = 25.03; sheet[2, 4].Value = 19.55; sheet[2, 5].Value = 23.05; sheet[3, 1].Value = 27908; sheet[3, 2].Value = 23; sheet[3, 3].Value = 19.05; sheet[3, 4].Value = 15.12; sheet[3, 5].Value = 17.32; sheet[4, 1].Value = 29567; sheet[4, 2].Value = 17.3; sheet[4, 3].Value = 20.33; sheet[4, 4].Value = 17.84; sheet[4, 5].Value = 20.45; sheet[5, 1].Value = 25895; sheet[5, 2].Value = 20.4; sheet[5, 3].Value = 18.56; sheet[5, 4].Value = 16.33; sheet[5, 5].Value = 17.35; // Add charts to worksheet Chart stockChart = sheet.Charts.AddChartAndFitInto(7, 1, 26, 9, ChartType.StockHLC); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 3, 5, 3))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 4, 5, 4))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 5, 5, 5))); stockChart = sheet.Charts.AddChartAndFitInto(7, 10, 26, 18, ChartType.StockOHLC); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 2, 5, 2))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 3, 5, 3))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 4, 5, 4))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 5, 5, 5))); stockChart = sheet.Charts.AddChartAndFitInto(28, 1, 46, 9, ChartType.StockVHLC); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 1, 5, 1))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 3, 5, 3))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 4, 5, 4))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 5, 5, 5))); stockChart = sheet.Charts.AddChartAndFitInto(28, 10, 46, 18, ChartType.StockVOHLC); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 1, 5, 1))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 2, 5, 2))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 3, 5, 3))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 4, 5, 4))); stockChart.SeriesCollection.Add(new Series(sheet.Range(1, 5, 5, 5))); // Save it as XLS spreadsheet.SaveAs("Output.xls"); // Close the document spreadsheet.Close(); // Cleanup spreadsheet.Dispose(); // Open generated XLS file in default associated application Process.Start("Output.xls"); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page

Explore ByteScout Data Extraction Suite Documentation

Explore Samples

Sign Up for ByteScout Data Extraction Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page

Explore ByteScout Data Extraction Suite Documentation

Explore Samples

Sign Up for ByteScout Data Extraction Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next