How do I change the thickness of the lines in an Excel chart? -


i managed create chart in excel worksheet following code:

let chartobjects = chartsheet.chartobjects() :?> chartobjects     let chartobject = chartobjects.add(400.0, 20.0, 550.0, 350.0)     chartobject.chart.chartwizard(title = "p&l , benchmark",                                   source = chartsheet.range("a1", "c" + (string (slen))),                                   gallery = xlcharttype.xlline, plotby = xlrowcol.xlcolumns,                                   serieslabels = 1, categorylabels = 1,                                   categorytitle = "", valuetitle = "nav")     chartobject.chart.chartstyle <- 5 

the series plotted have many data points (about 6,000) , fluctuate (stock price data). reason chart lines appear thick. make them thinner. can done interactively in excel. there way f#?


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -