Aspose.Slides.Examples.CSharp.Charts.NumberFormat.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_Charts();

            // Create directory if it is not already present.
            bool IsExists = System.IO.Directory.Exists(dataDir);
            if (!IsExists)
                System.IO.Directory.CreateDirectory(dataDir);

            // Instantiate the presentation// Instantiate the presentation
            Presentation pres = new Presentation();

            // Access the first presentation slide
            ISlide slide = pres.Slides[0];

            // Adding a defautlt clustered column chart
            IChart chart = slide.Shapes.AddChart(ChartType.ClusteredColumn, 50, 50, 500, 400);

            // Accessing the chart series collection
            IChartSeriesCollection series = chart.ChartData.Series;

            // Setting the preset number format
            // Traverse through every chart series
            foreach (ChartSeries ser in series)
            {
                // Traverse through every data cell in series
                foreach (IChartDataPoint cell in ser.DataPoints)
                {
                    // Setting the number format
                    cell.Value.AsCell.PresetNumberFormat = 10; //0.00%
                }
            }

            // Saving presentation
            pres.Save(dataDir + "PresetNumberFormat_out.pptx", SaveFormat.Pptx);

        }
    }
NumberFormat