c# - How to read category name on PowerPoint chart? -


how access name of each category chart in powerpoint? did name series, there similar categories:

microsoft.office.interop.powerpoint.seriescollection seriescollection = presentation.slides[1].shapes[2].chart.seriescollection(); series series2 = seriescollection.item(2); var series_name = series2.name; console.writeline(convert.tostring(series_name)); 


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -