ComponentOne
Web API Explorer ASP.NET Web API Explorer
MVCBulletGraph

MVCBulletGraph

Overview

Features

Settings

Export
Export Format :
Height :
Width :
Export Name :

Description

This sample demonstrates how to export a mvc BulletGraph to image file.
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using WebApiExplorer.Models; namespace WebApiExplorer.Controllers { public partial class MVCBulletGraphController : Controller { private readonly ImageExportOptions _bulletGaugeModel = new ImageExportOptions { Exporter = "wijmo.gauge.ImageExporter" }; private readonly ClientSettingsModel _demoSettingsModel = new ClientSettingsModel { Settings = new Dictionary<string, object[]> { {"Direction", new object[]{"Right", "Left", "Down", "Up"}}, {"IsReadOnly", new object[]{false, true }}, {"Step", new object[]{0.5, 1, 2}}, {"ShowRanges", new object[]{true, false}}, {"ShowText", new object[]{"All", "Value", "MinMax", "None"}} } }; public ActionResult Index() { ViewBag.DemoSettingsModel = _demoSettingsModel; ViewBag.Options = _bulletGaugeModel; return View(); } } } 
@using WebApiExplorer.Models @{ ClientSettingsModel settings = ViewBag.DemoSettingsModel; ImageExportOptions optionsModel = ViewBag.Options; ViewBag.DemoSettings = true; } @(Html.C1().BulletGraph().Id(optionsModel.ControlId) .Face(fb => fb.Min(0).Max(10)) .Pointer(pb => pb.Max(5).Thickness(0.5)).Format("").ShowText(ShowText.All) .Good(2).Bad(6).Target(9) .IsReadOnly(false).Step(0.5) .Width(600).Height(50) ) <script> function customChangeDirection(control, value) { control.direction = value; control.invalidate(); if (value === "Left" || value === "Right") { control.hostElement.style.width = "600px"; wijmo.Control.getControl("#exportWidth").value = 600; control.hostElement.style.height = "50px"; wijmo.Control.getControl("#exportHeight").value = 50; } else { control.hostElement.style.width = "50px"; wijmo.Control.getControl("#exportWidth").value = 50; control.hostElement.style.height = "600px"; wijmo.Control.getControl("#exportHeight").value = 600; } } </script> @section Settings{ @Html.Partial("_ImageExportOptions", optionsModel) } @section Description{ @Html.Raw(Resources.MVCBulletGraph.Index_Text0) }