[]
Gets the marker format for this point.
Use the returned IChartFormat object to configure the fill and line formatting of the point marker.
IChartFormat MarkerFormat { get; }
ReadOnly Property MarkerFormat As IChartFormat
worksheet.Range["A1:B4"].Value = new object[,] {{"Month", "Sales"}, {"Jan", 12}, {"Feb", 18}, {"Mar", 15}};
IChart chart = worksheet.Shapes.AddChart(ChartType.LineMarkers, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:B4"]);
IPoint point = chart.SeriesCollection[0].Points[1];
IChartFormat markerFormat = point.MarkerFormat;
markerFormat.Fill.Color.RGB = Color.Red;