Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Models/ChartModels.cs @ 9062

Last change on this file since 9062 was 9062, checked in by fschoepp, 11 years ago

#1888:
Backend changes:

  • Simplified job state detection (only one hive call will be made to detect all states now, instead of one additional call per job)
  • Reorganized classes (moved model classes into Model folder)

Website changes:

  • Website now heavily uses JavaScript to achieve better user experience
  • JavaScript degrades gracefully, except for plots
  • Tables: Added jquery-datatable-plugin to extend tables (pagination + search functionality)
  • OaaS-Website now uses the design of the HL websites (found in WebApplication branch)
  • Added jqplot to render zoomable line plots for HL-Datatables
  • Styling.js: Plots will be generated by using an ajax call; additional jquery-styling occurs within this file.
  • Added jquery-ui-1.9.2 which is capable of handling/rendering tabs, accordions and resizers.
File size: 528 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5
6namespace HeuristicLab.Services.Optimization.Web.Models {
7  public class SeriesEntry {
8    public string Label { get; set; }
9    public double[] Values { get; set; }
10  }
11
12  public class PlotableData {
13    private IList<SeriesEntry> series = new List<SeriesEntry>();
14    public bool ShowMarker { get; set; }
15    public IList<SeriesEntry> Series {
16      get { return series; }
17      set { series = value; }
18    }   
19  }
20}
Note: See TracBrowser for help on using the repository browser.