AddDataPointForMapSeries
IChartDataPointCollection.AddDataPointForMapSeries method
Erstellt den neuen Datenpunkt und fügt ihn am Ende der Sammlung hinzu. Gilt für Serien mit dem Diagrammtyp Karte.
public IChartDataPoint AddDataPointForMapSeries(IChartDataCell value)
Parameter | Typ | Beschreibung |
---|---|---|
value | IChartDataCell | Datenpunkt ColorValue |
Rückgabewert
Neuer Datenpunkt.
Beispiele
[C#]
using (Presentation pres = new Presentation())
{
IChart chart = sourcePres.Slides[0].Shapes.AddChart(ChartType.Map, 50, 50, 500, 400, false);
IChartDataWorkbook wb = chart.ChartData.ChartDataWorkbook;
IChartSeries series = chart.ChartData.Series.Add(ChartType.Map);
series.DataPoints.AddDataPointForMapSeries(wb.GetCell(0, "B2", 5));
series.DataPoints.AddDataPointForMapSeries(wb.GetCell(0, "B3", 1));
series.DataPoints.AddDataPointForMapSeries(wb.GetCell(0, "B4", 10));
}
Siehe auch
- interface IChartDataPoint
- interface IChartDataCell
- interface IChartDataPointCollection
- namensraum Aspose.Slides.Charts
- Montage Aspose.Slides