OfficeOpenXml.Drawing.Chart.ExcelScatterChartSerie.ExcelScatterChartSerie C# (CSharp) Метод

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

Default constructor
private ExcelScatterChartSerie ( ExcelChartSeries chartSeries, XmlNamespaceManager ns, XmlNode node, bool isPivot ) : System
chartSeries ExcelChartSeries Parent collection
ns System.Xml.XmlNamespaceManager Namespacemanager
node System.Xml.XmlNode Topnode
isPivot bool Is pivotchart
Результат System
        internal ExcelScatterChartSerie(ExcelChartSeries chartSeries, XmlNamespaceManager ns, XmlNode node, bool isPivot)
            : base(chartSeries, ns, node, isPivot)
        {
            if (chartSeries.Chart.ChartType == eChartType.XYScatterLines ||
                chartSeries.Chart.ChartType == eChartType.XYScatterSmooth)
            {
                Marker = eMarkerStyle.Square;
            }
        }
ExcelScatterChartSerie