Point Customization
You can customize points by initializing the point colors. The customization options allow you to differentiate the First
, Last
, Highest
, Lowest
, and Negative
points. This customization only applicable for line, column and area type Sparkline.
@(Html.EJ().Sparkline("container")
//To customize the point color of the sparkline
.NegativePointColor("Red")
.HighPointColor("Blue")
.LowPointColor("Orange")
.StartPointColor("Green")
.EndPointColor("Green")
)