The Telerik Chart for ASP.NET MVC supports multiple axes for displaying diverse sets of data.

Series can be associated to a particular axis by specifying the axis name.

Html.Telerik().Chart(Model)
    .Name("chart")
    .Series(series => {
        series.Column(new int[] { 20, 40 });
                
        series.Line(new double[] { 30, 38 })
              .Axis("mpg");
    })
    .ValueAxis(axis => axis
        .Numeric().Title("Default")
    )
    .ValueAxis(axis => axis
        .Numeric("mpg")
    )