FlexChart Series
The FlexChart series property exposes a collection of Series objects that can be used to customize the chart.
This demo populates the series collections automatically based on the chart's itemsSource, and shows the series information on a grid where it can be edited:
Binding
Name
Visibility
Chart Type
Leads
Leads
Visible
Qualified
Qualified
Visible
Analysis
Analysis
Visible
Quotes
Quotes
Visible
Negotiations
Negotiations
Visible
Sales
Sales
Visible
Binding
Name
Visibility
Chart Type
0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | // This file locates: "Scripts/Lesson/C1FlexChart/Series.js". c1.documentReady(function () { var theChart = wijmo.Control.getControl( '#theChart' ); var theGrid = wijmo.Control.getControl( '#theGrid' ); // auto-generate series var item = theChart.itemsSource.items[0]; for (var k in item) { if (wijmo.isNumber(item[k])) { var series = new wijmo.chart.Series(); series.binding = k; series.name = wijmo.toHeaderCase(k); series[ 'visible' ] = true ; // add 'visible' property for binding theChart.series.push(series); } } theGrid.cellEditEnded.addHandler(function (s, e) { theChart.refresh( true ); }); // show the chart's series in a grid theGrid.itemsSource = theChart.series; theGrid.columns.push( new wijmo.grid.Column({ binding: 'binding' , header: 'Binding' , isReadOnly: true })); theGrid.columns.push( new wijmo.grid.Column({ binding: 'name' , header: 'Name' , isRequired: true })); theGrid.columns.push( new wijmo.grid.Column({ binding: 'visibility' , header: 'Visibility' , dataMap: getDataMap(wijmo.chart.SeriesVisibility) })); theGrid.columns.push( new wijmo.grid.Column({ binding: 'chartType' , header: 'Chart Type' , dataMap: getDataMap(wijmo.chart.ChartType), isRequired: false })); // build a DataMap for a given enum function getDataMap(enumClass) { var pairs = []; for (var key in enumClass) { var val = parseInt(key); if (!isNaN(val)) { pairs.push({ key: val, name: enumClass[val] }); } } return new wijmo.grid.DataMap(pairs, 'key' , 'name' ); } }); |
1 2 3 4 5 6 7 8 9 10 11 12 13 | using System.Web.Mvc; namespace LearnMvcClient.Controllers { public partial class C1FlexChartController : Controller { // GET: Series public ActionResult Series() { return View(Models.FlexChartData.GetSummaries()); } } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | @using LearnMvcClient.Models @model IEnumerable < FlexChartData.Summary > < h1 > @Html .Raw(Resources.C1FlexChart.Series_Title) </ h1 > < p > @Html .Raw(Resources.C1FlexChart.Series_Text1) </ p > < p > @Html .Raw(Resources.C1FlexChart.Series_Text2) </ p > @ (Html.C1().FlexChart< FlexChartData.Summary >().Id( "theChart" ) .Bind( "Country" , Model) ) @ (Html.C1().FlexGrid().Id( "theGrid" ) .AutoGenerateColumns( false ) ) |