Я работаю с DotNet.Highcharts в Visual Studio 2010. Я создаю веб-приложение MVC 3. Я могу заставить HighCharts работать, статически назначая данные. Я хотел бы иметь возможность отправлять данные из базы данных в HighCharts для отображения.
Могу ли я создать класс для управления данными и затем отправить класс в HighCharts? Если так, может кто-нибудь сказать мне, как это сделать? Кроме того, если у кого-то есть работающий проект, который демонстрирует это и готов поделиться, это было бы замечательно.
Я видел, как кто-то написал следующий класс в другом вопросе. однако я не знаю, как его использовать или отправить класс в скрипт HighCharts. Любая помощь будет принята с благодарностью.
class HighChartsPoint
{
public double x {set; get;}
public double y {set; get;}
public string color {set; get;}
public string id {set; get;}
public string name {set; get;}
public bool sliced {set; get;}
}
EDIT
Ну, я создаю веб-приложение для отображения информации из данных, собранных из солнечного мониторинга. Таким образом, это будут мощность, напряжение, ток и т. Д., Сгруппированные по объединителю, инвертору и т. Д. Я полагаю, что это будут данные X и Y. Однако, если было бы проще кодировать через массив объектов, то я все для этого. Я надеюсь, что ответил на ваш вопрос. Ниже приведены классы моделей, которые у меня есть для данных. Я не полностью закончил с ними. Мне все еще нужно добавить проверку и изменить поля, которые ссылаются на другие таблицы. Чтобы связать поле combiner_id в классе power_string с полем id в классе power_combiner, я бы использовал: public virtual power_combiner combiner_id {get; задавать; }
public class AESSmartEntities : DbContext
{
public DbSet<power_combiner> PowerCombiners { get; set; }
public DbSet<power_combinerhistory> PowerCombinerHistorys { get; set; }
public DbSet<power_coordinator> PowerCoordinators { get; set; }
public DbSet<power_installation> PowerInstallations { get; set; }
public DbSet<power_inverter> PowerInverters { get; set; }
public DbSet<power_string> PowerStrings { get; set; }
public DbSet<power_stringhistory> PowerStringHistorys { get; set; }
}
public class power_combiner
{
[ScaffoldColumn(false)]
public int id { get; set; }
[Required]
[DisplayName("Name")]
[StringLength(128, ErrorMessage = "The 'name' cannot be longer than 128 characters")]
public string name { get; set; }
[Required]
[DisplayName("Mac Address")]
[StringLength(24, ErrorMessage = "The 'mac' cannot be longer than 24 characters")]
public string mac { get; set; }
[DisplayName("Location")]
[StringLength(512, ErrorMessage = "The 'name' cannot be longer than 512 characters")]
public string location { get; set; }
[DisplayName("power_installation")]
public int? installation_id { get; set; }
[DisplayName("power_inverter")]
public int? inverter_id { get; set; }
[DisplayName("power_coordinator")]
public int coordinator_id { get; set; }
[DisplayName("Installation ID")]
public virtual power_installation installation_ { get; set; }
[DisplayName("Inverter ID")]
public virtual power_inverter inverter_ { get; set; }
[DisplayName("Coordinator ID")]
public virtual power_coordinator coordinator_ { get; set; }
}
public class power_combinerhistory
{
[ScaffoldColumn(false)]
public int id { get; set; }
[Required]
[DisplayName("Voltage")]
public double voltage { get; set; }
[Required]
[DisplayName("Current")]
public double current { get; set; }
[Required]
[DisplayName("Temperature")]
public double temperature { get; set; }
[Required]
[DisplayName("DateTime")]
public DateTime recordTime { get; set; }
[Required]
[DisplayName("power_combiner")]
public int combiner_id { get; set; }
[DisplayName("Combiner ID")]
public virtual power_combiner combiner_ { get; set; }
}
public class power_coordinator
{
[ScaffoldColumn(false)]
public int id { get; set; }
[Required]
[DisplayName("Mac Address")]
[StringLength(24, ErrorMessage = "The 'mac' cannot be longer than 24 characters")]
public string mac { get; set; }
[Required]
[DisplayName("Report Time")]
public DateTime reportTime { get; set; }
[Required]
[DisplayName("Command")]
[StringLength(2, ErrorMessage = "The 'command' cannot be longer than 2 characters")]
public string command { get; set; }
[Required]
[DisplayName("Collect Time")]
public int collect_time { get; set; }
[Required]
[DisplayName("Interval Time")]
public int interval_time { get; set; }
[DisplayName("power_installation")]
public int? installation_id { get; set; }
[DisplayName("Installation ID")]
public virtual power_installation installation_ { get; set; }
}
public class power_installation
{
[ScaffoldColumn(false)]
public int id { get; set; }
[Required]
[DisplayName("Name")]
[StringLength(128, ErrorMessage = "The 'name' cannot be longer than 128 characters")]
public string name { get; set; }
[Required]
[DisplayName("UUID")]
[StringLength(36, ErrorMessage = "The 'uuid' cannot be longer than 36 characters")]
public string uuid { get; set; }
[DisplayName("Description")]
[StringLength(512, ErrorMessage = "The 'description' cannot be longer than 512 characters")]
public string description { get; set; }
[DisplayName("History Time")]
public int historytime { get; set; }
}
public class power_inverter
{
[ScaffoldColumn(false)]
public int id { get; set; }
[Required]
[DisplayName("Name")]
[StringLength(128, ErrorMessage = "The 'name' cannot be longer than 128 characters")]
public string name { get; set; }
[Required]
[DisplayName("UUID")]
[StringLength(36, ErrorMessage = "The 'uuid' cannot be longer than 36 characters")]
public string uuid { get; set; }
[Required]
[DisplayName("Location")]
[StringLength(512, ErrorMessage = "The 'location' cannot be longer than 512 characters")]
public string location { get; set; }
[DisplayName("power_installation")]
public int installation_id { get; set; }
[DisplayName("power_coordinator")]
public int coordinator_id { get; set; }
[DisplayName("Installation ID")]
public virtual power_installation installation_ { get; set; }
[DisplayName("Coordinator ID")]
public virtual power_coordinator coordinator_ { get; set; }
}
public class power_string
{
[ScaffoldColumn(false)]
public int id { get; set; }
[Required]
[DisplayName("UUID")]
[StringLength(36, ErrorMessage = "The 'uuid' cannot be longer than 36 characters")]
public string uuid { get; set; }
[Required]
[DisplayName("Position")]
public int position { get; set; }
[DisplayName("Name")]
[StringLength(128, ErrorMessage = "The 'name' cannot be longer than 128 characters")]
public string name { get; set; }
[DisplayName("Location")]
[StringLength(512, ErrorMessage = "The 'location' cannot be longer than 512 characters")]
public string location { get; set; }
[Required]
[DisplayName("power_combiner")]
public int combiner_id { get; set; }
[DisplayName("Combiner ID")]
public virtual power_combiner combiner_ { get; set; }
}
public class power_stringhistory
{
[ScaffoldColumn(false)]
public int id { get; set; }
[Required]
[DisplayName("Current")]
public double current { get; set; }
[Required]
[DisplayName("Record Time")]
public DateTime recordTime { get; set; }
[Required]
[DisplayName("power_string")]
public int string_id { get; set; }
[DisplayName("String ID")]
public virtual power_string string_ { get; set; }
}
EDIT
Ниже приведен код, который у меня есть. У меня проблемы с конвертацией даты. GetTotalMilliseconds не существует в текущем контексте. Это из сценариев HighCharts или из какого-то другого пространства имен, которое мне нужно включить? Кроме того, похоже, что я правильно использую контекст данных для назначения данных диаграмме? Я изменил значение x на идентификатор объединителя:
.SetSeries(new[]
{
new Series
{
Name = "Combiner",
YAxis = 0,
Data = new Data(powercombinerhistorys.Select(mm => new Point { X = mm.combiner_id, Y = mm.current}).ToArray())
}
});
и я все еще получаю ошибку. Ошибка:
Невозможно привести тип «System.Int32» к типу «DotNet.Highcharts.Helpers.Number». LINQ to Entities поддерживает только приведение типов примитивов модели данных Entity.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Drawing;
using DotNet.Highcharts;
using DotNet.Highcharts.Enums;
using DotNet.Highcharts.Helpers;
using DotNet.Highcharts.Options;
using Point = DotNet.Highcharts.Options.Point;
using AESSmart.Models;
using System.Data;
using System.Data.Entity;
namespace AESSmart.Controllers
{
public class HighChartsTestController : Controller
{
private AESSmartEntities db = new AESSmartEntities();
public ActionResult CombinerHistoryData()
{
var powercombinerhistorys = db.PowerCombinerHistorys.Include(p => p.combiner_);
Highcharts chart = new Highcharts("chart")
.InitChart(new Chart { DefaultSeriesType = ChartTypes.Column })
.SetTitle(new Title { Text = "Combiner History" })
.SetXAxis(new XAxis { Type = AxisTypes.Datetime })
.SetYAxis(new YAxis
{
Min = 0,
Title = new YAxisTitle { Text = "Current" }
})
.SetSeries(new[]
{
new Series
{
Name = "Combiner",
YAxis = 0,
Data = new Data(powercombinerhistorys.Select(x => new Point { X = GetTotalMilliseconds(x.recordTime), Y = x.current}).ToArray())
}
});
return View(chart);
}
}
}