- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在创建一个仪表板来显示通过 Chart.js 从 Google Analytics 获取的信息。目标是允许用户选择指标、日期和绘制图表的时间间隔,仪表板将调用 Google 并在单击按钮时更新图表。仪表板是在 Visual Studio 2013 的 MVC 应用程序中创建的。仪表板当前如下所示:右边画得不好的盒子是我打算放置按钮的地方。我遇到的问题是为按钮创建功能。我对 MVC 非常陌生,而且我相对确定我已经破坏了逻辑,因为我没有 View 。这个应用程序基本上已经成为 View 的 Controller 。 (这是在看了几十个 MVC 教程之后发生的事情。
Controller 目前看起来像这样:
public enum Metrics{users, newUsers, percentNewSessions, sessionsPerUser, sessions, bounces, bounceRate, sessionDuration, hits}
public enum Interval{Today, Yesterday, LastWeek, LastTwoWeeks, Daily, Weekly, Monthly, Yearly}
public class HomeController : Controller
{
public ActionResult Index()
{
string accountEmailAddress = "email@thing.com";
string keyPath = Server.MapPath("path");
var certificate = new X509Certificate2(keyPath, "blah", X509KeyStorageFlags.Exportable);//Creates certificate
var credentials = new ServiceAccountCredential(
new ServiceAccountCredential.Initializer(accountEmailAddress)
{
Scopes = new[] { AnalyticsService.Scope.AnalyticsReadonly }
}.FromCertificate(certificate));//Creates credentials ot GA server
AnalyticsService service = new AnalyticsService(new BaseClientService.Initializer()
{
HttpClientInitializer = credentials,
ApplicationName = "Dash"
});//Starts the service up.
string profileId = "ga:59346790";
string startDate = "2012-06-07";
string endDate = "2015-02-17";
string timing = "Yearly";
string metrics = "ga:users";
string[] dates = DateList(startDate, endDate, timing);
List<string> ColumnName = new List<string>();
List<double> values = new List<double>();
if (timing.Equals("Daily"))
{
for (int i = 0; i < dates.Length - 1; i++)
{
DataResource.GaResource.GetRequest request = service.Data.Ga.Get(profileId, dates[i], dates[i], metrics);
GaData data = request.Execute();
ColumnName.Add(DateLabel(dates[i]));
if (data.Rows == null)
{
values.Add(0);
}
else
{
foreach (var row in data.Rows)
{
foreach (var item in row)
{
values.Add(Convert.ToDouble(item));
}
}
}
}
}
else
{
for (int i = 0; i < dates.Length - 2; i+=2)
{
DataResource.GaResource.GetRequest request = service.Data.Ga.Get(profileId, dates[i], dates[i + 1], metrics);
GaData data = request.Execute();
ColumnName.Add(DateLabel(dates[i]));
if (data.Rows == null)
{
values.Add(0);
}
else
{
foreach (var row in data.Rows)
{
foreach (var item in row)
{
values.Add(Convert.ToDouble(item));
}
}
}
}
}
List<Metrics> metricList = Enum.GetValues(typeof(Metrics)).Cast<Metrics>().ToList();
List<Interval> intervalList = Enum.GetValues(typeof(Interval)).Cast<Interval>().ToList();
ViewBag.Metrics = new SelectList(metricList);
ViewBag.Intervals = new SelectList(intervalList);
values.OrderByDescending(m => values.Min());
ViewBag.ColumnName = ColumnName.ToArray();
ViewBag.Values = values.ToArray();
int[] test = { 3, 5, 6, 7, 3, 8, 9 };
ViewBag.intArray = test;
string[] testLabel = { "This", "Is", "A", "Test", "You", "Got", "It?" };
ViewBag.strArray = testLabel;
return View();
}
private static string DateLabel(string date){ ....code}
private static string[] DateList(string startDate, string endDate, string timing){...code}
}
这是我的观点: @{ ViewBag.Title = "首页";
double[] result = ViewBag.Values;
string[] labels = ViewBag.ColumnName;
string test = "";
string label = "";
for(int i =0; i<= result.Length - 1; ++i)
{
if(i==0)
{
test = test + result[i].ToString();
}
else
{
test = test + "," + result[i].ToString();
}
}
for (int i = 0; i <= labels.Length - 1; ++i)
{
if (i == 0)
{
label = label + labels[i].ToString();
}
else
{
label = label + "," + labels[i].ToString();
}
}
}
<label for="myChart">
Google Analytics<br />
<canvas id="myChart" width="800" height="400"></canvas>
</label>
<div>
<label for="Metrics">
Metrics <br />
@Html.DropDownList("Metrics", (SelectList)ViewBag.Metrics, new { @class = "form-control" })
</label>
<label for="Intervals">
Interval<br />
@Html.DropDownList("Intervals", (SelectList)ViewBag.Intervals, new { @class = "form-control" })
</label>
<label for="StartDate">
Start Date<br />
@Html.TextBox("StartDate")
</label>
<label for="EndDate">
End Date<br />
@Html.TextBox("EndDate")
</label>
</div>
<script>
var result = "@test";
var resultsArray = result.split(',');
var newLabels = "@label";
var labelsArray = newLabels.split(',');
var context = $("#myChart").get(0).getContext("2d");
var data = {
labels: labelsArray,
datasets: [{
label: "My First dataset",
fillColor: "rgba(220,220,220,0,2)",
strokeColor: "rgba(220,220,220,1)",
pointColor: "rgba(220,220,220,1)",
pointStrokeColor: "#fff",
pointHighlightFill: "#fff",
pointHighlightStroke: "rgba(220,220,220,1)",
data: resultsArray
}]
}
var options = {
///Boolean - Whether grid lines are shown across the chart
scaleShowGridLines: true,
//String - Colour of the grid lines
scaleGridLineColor: "rgba(0,0,0,.05)",
//Number - Width of the grid lines
scaleGridLineWidth: 1,
//Boolean - Whether the line is curved between points
bezierCurve: true,
//Number - Tension of the bezier curve between points
bezierCurveTension: 0.4,
//Boolean - Whether to show a dot for each point
pointDot: true,
//Number - Radius of each point dot in pixels
pointDotRadius: 4,
//Number - Pixel width of point dot stroke
pointDotStrokeWidth: 1,
//Number - amount extra to add to the radius to cater for hit detection outside the drawn point
pointHitDetectionRadius: 20,
//Boolean - Whether to show a stroke for datasets
datasetStroke: true,
//Number - Pixel width of dataset stroke
datasetStrokeWidth: 2,
//Boolean - Whether to fill the dataset with a colour
datasetFill: true,
}
var myLineChart = new Chart(context).Line(data, options)
$(document).ready(function () {
$('#StartDate').datepicker();
$('#EndDate').datepicker();
});
</script>
如果有人可以向我展示如何使用我当前的代码来完成创建一个按钮来实时刷新仪表板,那就太好了,尽管就 MVC 标准而言,该代码有点 FUBAR。我愿意接受温和的(或不那么温和的)插入他走向正确的方向。
最佳答案
不要在 Controller 的 Index 方法中填充图表数据,也不要在 View 加载时绘制图表数据。创建一个单独的方法(甚至可以查看 WebAPI),该方法仅返回用于填充图表的 JSON 数据。调用该方法并在单击按钮时刷新图表。用于填充图表的 JavaScript 也应该位于单独的文件中,并且不包含在 View 的文本中。图表将刷新,而无需重新加载整个页面。
Google for AJAX
(如果您想了解更多有关如何完成此操作的信息)。
我还会考虑使用SignalR这样您就不需要按钮,服务器可以在新数据可用时将新数据发送到图表,但这可能是一项高级技术。
关于javascript - MVC5实时刷新Chart.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28907713/
我有一个通过 Google Charts Org Chart API 呈现的图表。当用户单击节点时,如何获取有关所选节点的数据。我理解到我进行“getSelection”调用以将选择信息输出到 Jav
我使用Chart.js显示雷达图。我的问题是某些标签很长: 图表无法显示或显得很小。 那么,有没有办法换行或为标签分配最大宽度? 感谢您的帮助! 最佳答案 对于Chart.js 2.0+,您可以使用数
我想问一下使用Chart.js http://www.chartjs.org/ 可以吗?获得组合条形图和折线图? 感谢您的任何建议。 最佳答案 下面的答案与chart.js 1.x有关。 Chart.
我在addData和removeData函数中添加了chart.resize(),但它总是增加高度并且永远不会减少! 当用户单击菜单项时,我正在更新图表。有些项目有超过 100 个数据,有些项目只有
horizontal bar chart var barOptions_stacked1 = { tooltips: { e
我们将 Chart.js 与 clojurescript 和 Reagent 一起使用。现在我知道 Chart.js 有一个 Chart.update() 方法来用新数据更新图表。所以问题是,如何设置
我想显示一个包含多个数据集的条形图,如下所示,。。我可以获取如下所示的数据。。而是如何转换这个JSON数组,如下所示。我需要显示过去7天每个班次的出勤百分比。。感谢你在这方面的帮助。谢谢!。=编辑=
I want to display a bar chart with multiple datasets as shown below,我想显示一个包含多个数据集的条形图,如下所示, I'
假设我有一个 Charting.Chart : 我想导出到 Excel.Workbook.Worksheet以便我稍后可以“播放”数据(例如在 Excel 图表上拖放更多数据等): 请不要介意第二张图
离子性: ionic(Ionic CLI):4.10.3(/Users/faiz/.nvm/versions/node/v8.9.4/lib/node_modules/ionic) 离子框架:离子角3
我正在使用Chart.js来可视化我的数据,如下图所示。。。我想在图表中间加一张照片。。。如何在甜甜圈图表的中间添加照片?下面是我的javascript代码:
我正在使用 Kendo 饼图,我想将其配置为在没有数据可显示时显示一条消息。我正在使用以下 js 函数配置饼图 - 变量“JsPieChartDataSet”是一组 JSON 格式的数据。 是否有可以
是否可以在图表和x轴之间获得更多空间? 是否可以在图表的右侧和 Canvas 区域的末端之间留出更多的空间?我想在图表旁边的 Canvas 中添加更多元素,但是这是不可能的,因为图表占用了整个 Can
我正在使用chart.js,在图表的某些点的多日条目之间缺少一些数据。我已将这些值分配为null,但希望图表在缺失点之间绘制一条连接线。这是我所拥有的: 有没有办法将chart.js中的点连接起来?也
我正在生成一些谷歌图表,但我被困在这里。 Google 允许您将列堆叠起来。但它要么受到限制,要么我无法将其配置为工作。取自谷歌,这里有一个例子,显示了两个国家每年生产的咖啡杯数: 假设我有另一个相同
使用 Google Charts 条形图,是否可以更改一个条形的颜色。例如,我想将 2006 年的数据设为红色(其他条形为蓝色)。 function drawVisualization() {
我目前正在尝试重新设计设计布局。我通过尝试和错误得到了大部分。我唯一不明白的部分是: 1.) 左侧和底部的黑色轴。所以只有那些是黑色的2.) 里面的浅灰色轴。如何在颜色上应用不透明度或使用我自己的颜色
我使用以下命令创建了一个名为“abc”的 Helm 图表helm create abc现在,当我安装此图表时,所有创建的kuberenets资源将具有一个包含“abc”的名称。 现在,我必须将图表“a
我正在构建一个折线图,除了 ChartScrollbar 中的标签之外,一切正常,因为类别名称有点长,cahrtScrollbar 中的标签相互堆叠使其无法读取。我想知道是否可以隐藏标签、仅显示一些标
我正在使用 Chart.js 2.5。我的情况是,我有一个包含 40 个数据的数据集,但我只想在折线图中显示 7 个数据,但仍然可以水平向左/向右移动以发现其余数据。 我尝试了ticks.maxTic
我是一名优秀的程序员,十分优秀!