Hello,
Thanks for the suggested solution:
Now we do not see gap and have the color which we define for the null value after modifying the codes in follow way:
===================================================
Nevron.Chart.
NEmptyDataPointsAppearance edpAppearance = mySeries.EmptyDataPointsAppearance; edpAppearance.AppearanceMode = Nevron.Chart.
EmptyDataPointsAppearanceMode.Special;edpAppearance.MarkerMode = Nevron.Chart.
EmptyDataPointsMarkerMode.Special;edpAppearance.MarkerStyle.PointShape = Nevron.Chart.
PointShape.Pyramid;edpAppearance.FillStyle =
new Nevron.GraphicsCore.NColorFillStyle(System.Drawing.Color.Navy);edpAppearance.MarkerStyle.FillStyle =
new Nevron.GraphicsCore.NColorFillStyle(System.Drawing.Color.Navy);edpAppearance.MarkerStyle.Visible =
true;mySeries.Values.EmptyDataPoints.ValueMode = Nevron.Chart.
EmptyDataPointsValueMode.CustomValue; mySeries.EmptyDataPointsAppearance.MarkerStyle.Width =
new Nevron.GraphicsCore.NLength(2f, Nevron.GraphicsCore.NRelativeUnit.ParentPercentage);mySeries.EmptyDataPointsAppearance.MarkerStyle.Depth =
new Nevron.GraphicsCore.NLength(2f, Nevron.GraphicsCore.NRelativeUnit.ParentPercentage);mySeries.EmptyDataPointsAppearance.MarkerStyle.Height =
new Nevron.GraphicsCore.NLength(2f, Nevron.GraphicsCore.NRelativeUnit.ParentPercentage);mySeries.EmptyDataPointsAppearance.MarkerStyle.AutoDepth =
true;
=================================================
But we still do not see pointshape (Pyramid as we define here) for null values.
What code should we modify here so that PointShapes (Pyramid) show up for null values