Your search did not match any results.

Charts - Periodic Data

This example illustrates the visualization of periodic data. To notify the component that data is periodic, the period property of the argumentAxis is specified.

Backend API
@(Html.DevExtreme().PolarChart() .ID("chart") .DataSource(new[] { new { arg = 0, val = 0 }, new { arg = 720, val = 2 } }) .Series(s => s .Add() .Type(PolarChartSeriesType.Line) .Name("Function") .Closed(false)) .ArgumentAxis(a => a .Inverted(true) .StartAngle(90) .TickInterval(45) .Period(360)) .Export(e => e.Enabled(true)) .Legend(l => l.Visible(false)) .Title("Archimedean Spiral") )
using DevExtreme.AspNet.Data; using DevExtreme.AspNet.Mvc; using DevExtreme.NETCore.Demos.Models; using DevExtreme.NETCore.Demos.Models.SampleData; using Microsoft.AspNetCore.Mvc; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; namespace DevExtreme.NETCore.Demos.Controllers { public class ChartsController : Controller { public ActionResult PeriodicData() { return View(); } } }
#chart { height: 440px; }