Reported via email:
Issue
In EPPlus 8.7.0, VB.NET projects with Option Infer Off may fail to compile when working with chart series.
Dim seriesPred As ExcelChartSeries = chartObj.Series.Add(predYRange, xRange)
does not compile as ExcelChartSeries does not exist.
Dim seriesPred As ExcelChartSerie = chartObj.Series.Add(predYRange, xRange)
does compile, proving the naming problem.
Reported via email:
Issue
In EPPlus 8.7.0, VB.NET projects with
Option Infer Offmay fail to compile when working with chart series.Dim seriesPred As ExcelChartSeries = chartObj.Series.Add(predYRange, xRange)does not compile as ExcelChartSeries does not exist.
Dim seriesPred As ExcelChartSerie = chartObj.Series.Add(predYRange, xRange)does compile, proving the naming problem.