ApiExamples.ExDocumentBuilder.InsertChartDoubleEx C# (CSharp) Метод

InsertChartDoubleEx() приватный Метод

private InsertChartDoubleEx ( ) : void
Результат void
        public void InsertChartDoubleEx()
        {
            //ExStart
            //ExFor:DocumentBuilder.InsertChart(ChartType, Double, Double)
            //ExSummary:Shows how to insert a chart into a document.
            Document doc = new Document();
            DocumentBuilder builder = new DocumentBuilder(doc);

            builder.InsertChart(ChartType.Pie, ConvertUtil.PixelToPoint(300),
                                ConvertUtil.PixelToPoint(300));

            doc.Save(MyDir + @"\Artifacts\Document.InsertedChartDouble.doc");
            //ExEnd
        }
ExDocumentBuilder