Hello Tal,
The design of pie and bar series is pretty consistent - both charts types have series collections that can contain one or more series. A series contains a number of data points - in the case of bar series the data points are represented by bars; in the case of pie series the data points are represented by pie slices. Currently a pie chart displays only the first pie series, but in the future it will be able to display additional series in the form of dougnut chart with multiple rings.
The Visible property is available only per series. Data points do not have individual Visible property. You can set a data point to be "Empty" by setting its value to DBNull.Value, thus making it invisible. Empty data points leave placeholders in regular bar charts, but in pie charts they are excluded from calculation and cannot be used as placeholders. If you want to create a data point placeholder in a pie chart you can set the data point's FillStyle to fully transparent and remove the data point Border.
Regarding the legend - you can use manual mode in order to add or remove legend items according to your requirements.
Best Regards,
Milen Metodiev