ASP.NET Core MVC Controls | ComponentOne
Working with Controls / FlexChart / Work with FlexChart / Chart Gradient
In This Topic
    Chart Gradient
    In This Topic

    A gradient is a graphical effect that produces a three dimensional color look by blending one color into another. Multiple colors can be used, where one color gradually fades and changes to the other color. Elements or controls using gradient color look better, because the gradient is generated with the help of browser. FlexChart allows you to apply gradient colors to improve the appearance of your chart, with respect to styling.

    The gradient descriptor is an expression formatted as follows:

    HTML
    Copy Code
    <type>(<coords>)<colors>[:<offset>[:<opacity>]][-<colors>[:<offset>[:<opacity>]]]-<colors>[:<offset>[:<opacity>]]
    

    The gradient descriptor includes the following elements.

    Linear and radial gradient type examples are as follows.

    Linear Gradient Format
    Copy Code
    'l(0,0,1,0)#ff0000-#00ff00-#0000ff', 'L(0,0,300,300)#ff0000:0.2:0.2-00ff00:0.8'
    
    Radial Gradient Format
    Copy Code
    'r(0.5,0.5,1)#ff0000-#0000ff', 'R(100,100,100,200,200,200)#ff0000-#0000ff'
    

     

    The following code example demonstrates how to add gradient colors in FlexChart. This example uses the Fruit.cs model created in the FlexChart: Quick Start section.

    Razor
    Copy Code
    @using ChartGradient.Models
    @model IEnumerable<Fruit>
    @using C1.Web.Mvc.Chart
    
    @{ 
    
    var marchStyle = new SVGStyle
        {
            Stroke = "darkred",
            StrokeWidth = 1,
            Fill = "l(0,0,1,0)#30cfd0-#330867"
        };
    
    }
    <c1-flex-chart id="chartGradients" binding-x="Name" chart-type="Column" legend-position="None">
        <c1-flex-chart-datalabel content="{y}" />
        <c1-items-source source-collection="Model" />
        <c1-flex-chart-series name="March" binding="MarPrice" style="@marchStyle"></c1-flex-chart-series>
    </c1-flex-chart>                               
    
    See Also