Aspose.Words.Examples.CSharp.Programming_Documents.Working_with_Charts.InsertScatterChart.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // ExStart:InsertScatterChart
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_WorkingWithCharts();
            Document doc = new Document();
            DocumentBuilder builder = new DocumentBuilder(doc);

            // Insert Scatter chart.
            Shape shape = builder.InsertChart(ChartType.Scatter, 432, 252);
            Chart chart = shape.Chart;

            // Use this overload to add series to any type of Scatter charts.
            chart.Series.Add("AW Series 1", new double[] { 0.7, 1.8, 2.6 }, new double[] { 2.7, 3.2, 0.8 });

            dataDir = dataDir + "TestInsertScatterChart_out.docx";
            doc.Save(dataDir);
            // ExEnd:InsertScatterChart
            Console.WriteLine("\nScatter chart created successfully.\nFile saved at " + dataDir);
        }        
    }
InsertScatterChart