Esempio n. 1
0
 internal ExcelBubbleChart(ExcelDrawings drawings, XmlNode node, eChartType type, ExcelChart topChart, ExcelPivotTable PivotTableSource) :
     base(drawings, node, type, topChart, PivotTableSource)
 {
     ShowNegativeBubbles = false;
     BubbleScale         = 100;
     _chartSeries        = new ExcelBubbleChartSeries(this, drawings.NameSpaceManager, _chartNode, PivotTableSource != null);
     //SetTypeProperties();
 }
Esempio n. 2
0
 internal ExcelBubbleChart(ExcelDrawings drawings, XmlNode node, eChartType type, ExcelChart topChart, ExcelPivotTable PivotTableSource)
     : base(drawings, node, type, topChart, PivotTableSource)
 {
     ShowNegativeBubbles = false;
     BubbleScale = 100;
     _chartSeries = new ExcelBubbleChartSeries(this, drawings.NameSpaceManager, _chartNode, PivotTableSource!=null);
     //SetTypeProperties();
 }
Esempio n. 3
0
 internal ExcelBubbleChart(ExcelChart topChart, XmlNode chartNode) :
     base(topChart, chartNode)
 {
     _chartSeries = new ExcelBubbleChartSeries(this, _drawings.NameSpaceManager, _chartNode, false);
 }
Esempio n. 4
0
 internal ExcelBubbleChart(ExcelDrawings drawings, XmlNode node, Uri uriChart, ZipPackagePart part, XmlDocument chartXml, XmlNode chartNode) :
     base(drawings, node, uriChart, part, chartXml, chartNode)
 {
     _chartSeries = new ExcelBubbleChartSeries(this, _drawings.NameSpaceManager, _chartNode, false);
     //SetTypeProperties();
 }
Esempio n. 5
0
 internal ExcelBubbleChart(ExcelDrawings drawings, XmlNode node, eChartType type, bool isPivot) :
     base(drawings, node, type, isPivot)
 {
     _chartSeries = new ExcelBubbleChartSeries(this, drawings.NameSpaceManager, _chartNode, isPivot);
     //SetTypeProperties();
 }
Esempio n. 6
0
 internal ExcelBubbleChart(ExcelChart topChart, XmlNode chartNode)
     : base(topChart, chartNode)
 {
     _chartSeries = new ExcelBubbleChartSeries(this, _drawings.NameSpaceManager, _chartNode, false);
 }
Esempio n. 7
0
 internal ExcelBubbleChart(ExcelDrawings drawings, XmlNode node, Uri uriChart, ZipPackagePart part, XmlDocument chartXml, XmlNode chartNode)
     : base(drawings, node, uriChart, part, chartXml, chartNode)
 {
     _chartSeries = new ExcelBubbleChartSeries(this, _drawings.NameSpaceManager, _chartNode, false);
     //SetTypeProperties();
 }
Esempio n. 8
0
 internal ExcelBubbleChart(ExcelDrawings drawings, XmlNode node, eChartType type, bool isPivot)
     : base(drawings, node, type, isPivot)
 {
     _chartSeries = new ExcelBubbleChartSeries(this, drawings.NameSpaceManager, _chartNode, isPivot);
     //SetTypeProperties();
 }
Esempio n. 9
0
 internal override void InitSeries(ExcelChart chart, XmlNamespaceManager ns, XmlNode node, bool isPivot, List <ExcelChartSerie> list = null)
 {
     base.InitSeries(chart, ns, node, isPivot, list);
     Series = new ExcelBubbleChartSeries(chart, ns, node, isPivot, base.Series._list);
 }