aspose-words / Aspose.Words-for-.NET

Aspose.Words for .NET examples, plugins and showcases
https://products.aspose.com/words/net
MIT License
503 stars 187 forks source link

How to implete the chart which is a combination of two charts (Column and Line). #243

Closed ksq1063126847 closed 5 years ago

ksq1063126847 commented 5 years ago
  1. It is feasible on aspose-cell , how can I complete it on aspose-word,like this:

123

  1. code

     Document doc = new Document();
     DocumentBuilder builder = new DocumentBuilder(doc);
     // Insert Column chart.
     Shape shape = builder.InsertChart(ChartType.Column, 432, 252);
     Chart chart = shape.Chart;           
     chart.Series.Add("AW Series 1", new string[] { "Category 1", "Category 2" }, new double[] { 1, 2 });
    
     dataDir = @"E:\\TestInsertChartColumn_out.doc";
     doc.Save(dataDir);       
tahir-manzoor commented 5 years ago

Unfortunately, Aspose.Words does not support the requested feature at the moment. However, we have logged this feature request as WORDSNET-19242 in our issue tracking system. You will be notified once this feature is available. We apologize for your inconvenience.

ksq1063126847 commented 5 years ago

Thanks for your replay

kongmengfei commented 2 years ago

Does this feature Go ON?

AlexNosk commented 2 years ago

@kongmengfei Unfortunately, creation of combo charts programmatically is not supported by Aspose.Words yet.