ComponentOne. RadialGauge for ASP.NET Wijmo

Size: px
Start display at page:

Download "ComponentOne. RadialGauge for ASP.NET Wijmo"

Transcription

1 ComponentOne RadialGauge for ASP.NET Wijmo

2 Copyright GrapeCity, Inc. All rights reserved. ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA USA Internet: info@componentone.com Web site: Sales sales@componentone.com Telephone: or (Pittsburgh, PA USA Office) Trademarks The ComponentOne product name is a trademark and ComponentOne is a registered trademark of GrapeCity, Inc. All other trademarks used herein are the properties of their respective owners. Warranty ComponentOne warrants that the original CD (or diskettes) are free from defects in material and workmanship, assuming normal use, for a period of 90 days from the date of purchase. If a defect occurs during this time, you may return the defective CD (or disk) to ComponentOne, along with a dated proof of purchase, and ComponentOne will replace it at no charge. After 90 days, you can obtain a replacement for a defective CD (or disk) by sending it and a check for $25 (to cover postage and handling) to ComponentOne. Except for the express warranty of the original CD (or disks) set forth here, ComponentOne makes no other warranties, express or implied. Every attempt has been made to ensure that the information contained in this manual is correct as of the time it was written. We are not responsible for any errors or omissions. ComponentOne s liability is limited to the amount you paid for the product. ComponentOne is not liable for any special, consequential, or other damages for any reason. Copying and Distribution While you are welcome to make backup copies of the software for your own use and protection, you are not permitted to make copies for the use of anyone else. We put a lot of time and effort into creating this product, and we appreciate your support in seeing that it is used by licensed users only. This manual was produced using ComponentOne Doc-To-Help.

3 Table of Contents ComponentOne RadialGauge for ASP.NET Wijmo Overview...1 Help with ComponentOne Studio for ASP.NET Wijmo... 1 Key Features...1 RadialGauge for ASP.NET Wijmo Quick Start...3 Step 1 of 3: Adding C1RadialGauge to the Page... 3 Step 2 of 3: Customizing C1RadialGauge's Appearance... 4 Step 3 of 3: Customizing C1RadialGauge's Behavior... 6 Wijmo Top Tips...9 Working with C1RadialGauge...9 Why Use Gauge Controls? C1RadialGauge Values C1RadialGauge StartAngle and SweepAngle C1RadialGauge Indicators C1RadialGauge Pointer and PointerCap C1RadialGauge Face and Cover RadialGauge for ASP.NET Wijmo Samples RadialGauge for ASP.NET Wijmo Task-Based Help Creating a C1RadialGauge in Code Resizing the Control Setting the Start Value Setting the Minimum and Maximum Values RadialGauge for ASP.NET Wijmo Client-Side Reference iii

4

5 ComponentOne RadialGauge for ASP.NET Wijmo Overview ComponentOne RadialGauge for ASP.NET Wijmo delivers the exact graphical representation you need. Choose from circular, helical, arc curve, clamshell, or half-circular radial gauges. For a list of the latest features added to ComponentOne Studio for ASP.NET Wijmo, visit What's New in Studio for ASP.NET Wijmo. Getting Started Get started with the following topics: - Key Features - Quick Start - Samples Help with ComponentOne Studio for ASP.NET Wijmo Getting Started For information on installing ComponentOne Studio for ASP.NET Wijmo, licensing, technical support, namespaces and creating a project with the control, please visit Getting Started with Studio for ASP.NET Wijmo. What's New For a list of the latest features added to ComponentOne Studio for ASP.NET Wijmo, visit What's New in Studio for ASP.NET Wijmo. Key Features C1RadialGauge includes several unique features, including the following: Styling Made Easy All gauge elements can be customized to fit your needs. Restyling the ComponentOne Gauge controls is as simple as changing a property. All of the key elements in the gauge are surfaced. You can create gauges with custom colors, fills, fonts and more. Ranges Add colored ranges to the gauge to draw attention to a certain range of values. Use simple properties to customize their start and end points, as well as location, size, and appearance. Create non-linear ranges by specifying a start and end width to show growth and add visual appeal to any gauge. Tick Marks and Labels Define marks and labels. Use simple properties to customize their interval, location, and appearance. Apply formatting to the gauge labels; for example, format labels in currency or percentage format using standard.net format strings. Rich Customization Create any look desired by customizing the face and cover shapes of the gauge using the rich set of style attributes available. You can even simulate a glassing effect using simple shapes. If shapes are not enough, you may add images. It's possible to apply various effects to images, such as rotation, flipping, changing the hue, saturation, lightness, and opacity. 1

6 Scale Customization Use simple properties to set the start and sweep angle of the gauge scale. Pointer Customization Choose from many predefined pointer shapes, customize the shape, or import your own custom image to use as the pointer. Specify the exact position of the pointer origin in radial and linear gauges. This allows you to decentralize the pointer to either side or the bottom of the gauge.. Animation Gauges come out-of-the-box with smooth animations. You can customize the animations. For example, for the pointer animation, you may set the time interval for the animation as the value changes. You can also decrease the frequency of redrawing for the gauge control if the source value is changed too frequently for observation.. Logarithmic Markers With the Islogarithmic and LogarithmicBase properties, you can get the logarithmic markers. Live Data Gauges are optimized for streaming live data. The gauge will animate as the data changes. 2

7 RadialGauge for ASP.NET Wijmo Quick Start In this quick start you'll explore the functionality of the C1RadialGauge control. C1RadialGauge provides the ability to display data in a unique view. Step 1 of 3: Adding C1RadialGauge to the Page In this step you'll create and set up a Web site and add an empty C1RadialGauge control. Complete the following steps to add the C1RadialGauge control to a Web site: 1. From the Visual Studio File menu select New Project. The New Project dialog box will appear. 2. In the New Project dialog box expand a language in the left-hand pane and select Web. In the right pane, choose ASP.NET Empty Web Application, enter a Name for your application, and select OK. A new application will be created. 3. In the Solution Explorer, right-click the project and choose Add Reference. 4. In the Add Reference dialog box, locate and select the C1.Web.Wijmo.Controls and C1.Web.Wijmo.Controls.Design assemblies and click OK. The references will be added. 5. Right-click the project in the Solution Explorer and from the context menu choose Add New Item. 6. In the Add New Item dialog box choose Web Form from the list of templates, name the item "Default.aspx", and click Add. The new page should open. 7. In Source view, add the following markup at the top of the page to register the C1RadialGauge assembly: <%@ Register Assembly="C1.Web.Wijmo.Controls.4" Namespace="C1.Web.Wijmo.Controls.C1RadialGauge" TagPrefix="wijmo" %> Depending on the assembly added, you may need to replace "C1.Web.Wijmo.Controls.4" with "C1.Web.Wijmo.Controls.3" above. 8. Place your mouse between the page's initial <div></div> tags, and add the following markup to add the C1RadialGauge control to the page: <wijmo:c1radialgauge ID="C1RadialGauge1" runat="server"></wijmo:c1radialgauge> 9. Run your application, and observe that the page now looks similar to the following image: 3

8 In this step you added a C1RadialGauge control to the form, but the control is currently I unformatted. In the next step of the quick start, you'll add content to the control. Step 2 of 3: Customizing C1RadialGauge's Appearance In this step you'll customize the appearance of the C1RadialGauge control. The following steps assume you've completed Step 1 of 3: Adding C1RadialGauge to the Page topic and added a C1RadialGauge control to the page. Complete the following steps to customize the C1RadialGauge control: 1. In Source view, edit the <wijmo:c1radialgauge></wijmo:c1radialgauge> tag so it looks like the following:: <wijmo:c1radialgauge ID="C1RadialGauge1" runat="server" Value="50" Max="100" StartAngle="-45" SweepAngle="270"> This sets the Value and Max value of the control, as well as the gauge's StartAngle and SweepAngle. 2. Place your mouse between the <wijmo:c1radialgauge></wijmo:c1radialgauge> tags, and add the following markup to style various aspects of the C1RadialGauge control: <Animation Duration="2000" Easing="EaseOutBack"></Animation> <Labels Offset="30"></Labels> <TickMajor Position="Inside" Factor="2" Visible="True" Offset="27" Interval="25"></TickMajor> <TickMinor Position="Inside" Visible="True" Offset="30" Interval="5"></TickMinor> <Pointer Length="0.8" Width="4" Offset="0.15"></Pointer> <Ranges> 4

9 <Wijmo:GaugelRange EndDistance="0.58" EndValue="10" EndWidth="5" StartDistance="0.6" StartValue="0" StartWidth="2"> <RangeStyle Stroke="#7BA0CC" StrokeWidth="0"> <Fill Color="#7BA0CC"></Fill> </RangeStyle> </Wijmo:GaugelRange> <Wijmo:GaugelRange EndDistance="0.54" EndValue="75" EndWidth="20" StartDistance="0.58" StartValue="10" StartWidth="5"> <RangeStyle Stroke="White" StrokeWidth="0"> <Fill ColorBegin="#B4D5F0" ColorEnd="#B4D5F0" Type="LinearGradient"></Fill> </RangeStyle> </Wijmo:GaugelRange> <Wijmo:GaugelRange EndDistance="0.5" EndValue="100" EndWidth="25" StartDistance="0.54" StartValue="175" StartWidth="20"> <RangeStyle Stroke="#7BA0CC" StrokeWidth="0"> <Fill Color="#7BA0CC"></Fill> </RangeStyle> </Wijmo:GaugelRange> </Ranges> Note that you set styles for the following items: Animation: Sets the animation options. Here you set the Duration and Easing of the animation. Labels: Sets options and the style of the gauge labels. Here you set the Offset of the labels. TickMajor: Sets options and the style of the major tick lines. Here you set the Position, Offset, Interval, and Factor of the major tick lines, as well as the visibility. TickMinor: Sets options and the style of the minor tick lines. Here you set the Position, Offset, and visibility of the minor tick lines. Pointer: Sets options and the style of the gauge pointer. Here you set the Style of the pointer, including the color and stroke. GaugelRange: Sets options and the style of the gauge range. Here you set the positioning and style of the ranges. 3. Run your application, and observe that the gauge now looks similar to the following image: 5

10 Notice the style changes that you made are reflected in the control. In this step you customized the appearance of the C1RadialGauge control. In the next step you'll customize the behavior of the control. Step 3 of 3: Customizing C1RadialGauge's Behavior In this step you'll add a slider control. When the thumb button of the slider is moved at run time, the value of the gauge control will change. The following steps assume you've completed Step 2 of 3: Customizing C1RadialGauge's Appearance topic. Complete the following steps: 1. In Source view, add the following markup just below the </wijmo:c1radialgauge> tag to add text: <p>drag and release the slider's thumb button to change the gauge's value:</p> 2. In Source view, add the following markup just below the </p> tag you just added to add a slider control to the page: <div id="slider" style="width: 400px"></div> The page now includes a slider control. 3. In Source view, add the following markup just below the </div> tag you just added to enable the slider control: <script type="text/javascript"> $(document).ready(function () { $("#slider").slider({ value: $("#<%= C1RadialGauge1.ClientID %>").c1radialgauge("option", "value"), change: function (event, ui) { $("#<%= C1RadialGauge1.ClientID %>").c1radialgauge("option", "value", ui.value); } 6

11 }); }); </script> Now when the slider's value changes, the gauge's value will also change to reflect the new value. 4. Run the application and observe that the control displays the changes that you made: 5. Click the slider's thumb button and preform a drag-and-drop operation. Notice the C1RadialGauge control's value changes to reflect the value of the slider control. In this step you customized the behavior of the controls. Congratulations, you've completed this quick start guide! 7

12

13 Wijmo Top Tips The following tips may help you troubleshoot when working with Studio for ASP.NET Wijmo. Tip 1: Prevent poor page rendering in quirks mode by editing the meta tag to fix rendering. If a user's browser is rendering a page in quirks mode, widgets and controls may not appear correctly on the page. This is indicated by a broken page icon in the address bar. In Compatibility View, the browser uses an older rendering engine. Users can set this view that causes the issue. To prevent rendering in quirks mode, you can force the page to render with the latest browser. Add the following meta tag to the header of the page: <meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1" /> Working with C1RadialGauge C1RadialGauge uses a rotating pointer to show a value along a curved scale. The value is represented by a Value property and the range is defined by the Min and Max properties. The C1RadialGauge control appears similar to a typical speedometer: Creating and using a C1RadialGauge control typically involves the following steps: 9

14 1. Creating the C1RadialGauge control and setting its main properties: Min, Max, StartAngle, and SweepAngle. 2. Adding TickMajor and TickMinor decorators to show the scale and GaugeLabel to customize the label. 3. Optionally adding GaugelRange decorators to highlight parts of the scale. Ranges are typically used to indicate ranges that are too low, acceptable, or too high. Ranges can also be dynamic, moving automatically when the Value property changes. 4. Optionally customizing gauge elements with templates. 5. Setting the Value property to display the value you want to show. Why Use Gauge Controls? You might be asking why you'd need to use gauge controls after all, gauges just display a single value and you could display that value using a simple label instead of a gauge. Gauges are better because they also display a range, allowing users to determine instantly whether the current value is low, high, or intermediate. You could use two additional labels to display the range as well as the current value, but that would make your user interface more confusing. That is why many applications use progress indicators that are simple linear gauges, instead of showing progress simply as a label. Gauges are also more visually attractive than simple labels (or sliders or scrollbars), and that adds value to your applications. C1RadialGauge Values You can use the C1RadialGauge control's Min, Max, and Value properties to specify the available range and the selected value in that range: The Min and Max properties specify the range of values the gauge is designed to show. For example, a thermometer may have a scale ranging from -40 to 100 degrees, and a speedometer may have range of 0 to 140 miles per hour. The range is specified through the Min and Max properties (of type double). The default range for a C1RadialGauge control is from 0 to

15 The Value property indicates the current value of the gauge. In the C1RadialGauge control, this is indicated visually by the value the Pointer element is pointing to. The default Value for a C1RadialGauge control is 0. C1RadialGauge StartAngle and SweepAngle Once the range has been defined, you need to specify the angles that match the Min and Max values. The StartAngle defines the position of the pointer when the Value property is set to the Min value in the range. The SweepAngle specifies the rotation added to the StartAngle when the Value property is set to the Max value in the range. All angles are specified in degrees, measured clockwise from the top of the control. The angles may be negative, but the absolute value of the SweepAngle may not exceed 360 degrees. The default values for StartAngle is -140 and for SweepAngle is 280. The images below show the effect of the StartAngle and SweepAngle properties: StartAngle = 0 SweepAngle = 90 StartAngle = 0 SweepAngle = -90 StartAngle = 45 SweepAngle = 270 StartAngle = -160 SweepAngle = 180 StartAngle = -160 SweepAngle = -180 StartAngle = -140 SweepAngle = 280 C1RadialGauge Indicators By default, the C1RadialGauge control displays a blue-gray background, a pointer, and very basic label and tick marks. In most applications, you'll also want to display a scale composed of custom labels and tick marks that allow users to see what the current value is and where it lies within the gauge's range. This is done by adding TickMajor, TickMinor, GaugelRange, and GaugeLabel elements: 11

16 In the image above, you'll see customized TickMajor and TickMinor elements: <!-- Tick marks --> <TickMajor Position="Inside" Factor="2" Visible="True" Offset="27" Interval="25"></TickMajor> <TickMinor Position="Inside" Visible="True" Offset="30" Interval="5"></TickMinor> The OffSet property is also set: <!-- Add labels --> <Labels Offset="30"></Labels> In addition to showing the scale, you may want to highlight parts of the scale range. For example, you may want to add a red marker to indicate that values in that range are too low (sales) or too high (expenses). This can be done easily by adding one or more GaugelRange elements. In the image above, you'll see three GaugelRange elements: <!-- Add three colored ranges --> <Ranges> <Wijmo:GaugelRange EndDistance="0.58" EndValue="10" EndWidth="5" StartDistance="0.6" StartValue="0" StartWidth="2"> <RangeStyle Stroke="#7BA0CC" StrokeWidth="0"> <Fill Color="#7BA0CC"></Fill> </RangeStyle> </Wijmo:GaugelRange> <Wijmo:GaugelRange EndDistance="0.54" EndValue="125" EndWidth="20" StartDistance="0.58" StartValue="10" StartWidth="5"> <RangeStyle Stroke="White" StrokeWidth="0"> <Fill ColorBegin="#B4D5F0" ColorEnd="#B4D5F0" Type="LinearGradient"></Fill> 12

17 </RangeStyle> </Wijmo:GaugelRange> <Wijmo:GaugelRange EndDistance="0.5" EndValue="150" EndWidth="25" StartDistance="0.54" StartValue="125" StartWidth="20"> <RangeStyle Stroke="#7BA0CC" StrokeWidth="0"> <Fill Color="#7BA0CC"></Fill> </RangeStyle> </Wijmo:GaugelRange> </Ranges> The GaugelRange elements show three blue-colored range areas. Each GaugelRange element displays a curved swath along the scale. The color of the swath is determined by the RangeStyle property, and the position is determined by the StartValue and EndValue properties. You can control the thickness of the ranges using the StartWidth and EndWidth properties. C1RadialGauge Pointer and PointerCap The C1RadialGauge control includes a pointer which indicates the selected Value of the control. The pointer consists of the Pointer element and the Cap element: The Pointer element appears by default as a blue tapering element, but you can customize the appearance of the Pointer element by setting several properties in the GaugePointer class, including the Length, Offset, Shape, PointerStyle, Template, Visible, and Width properties. In the image above, the Pointer element is customized: <! Pointer --> <Pointer Length="1" Width="4" Offset="0.15"> <PointerStyle Stroke="#BF551C"> 13

18 <Fill Color="#BF551C"> </Fill> </PointerStyle> </Pointer> The Cap element appears by default as a blue circle, but you can customize the appearance of the Cap element by setting several properties in the C1RadialGaugePointerCap class, including the BehindPointer, Radius, PointerCapStyle, Template, and Visible properties. In the image above, the Cap element is customized: <! Pointer Cap --> <Cap> </Cap> <PointerCapStyle Stroke="#7F9CAD"> <Fill Color="#7F9CAD"> </Fill> </PointerCapStyle> C1RadialGauge Face and Cover Like a watch, the C1RadialGauge control includes a Face element. The Face appears above the background but behind the pointer and other elements. For example, in the image below the Face is a plain gray circle that appears behind the elements in the gauge: In the image above, the Face element is customized: <! Face --> <Face> 14

19 </Face> <FaceStyle Stroke="#E0E8EF"> <Fill Color="#E0E8EF"> </Fill> </FaceStyle> The Face element appears by default as a blue-gray circle, but you can customize the appearance of the Face element by setting several properties in the GaugeFace class, including the FaceStyle and Template properties. RadialGauge for ASP.NET Wijmo Samples Please be advised that this ComponentOne software tool is accompanied by various sample projects and/or demos which may make use of other development tools included with the ComponentOne Studios. Samples can be accessed from the ComponentOne ControlExplorer. To view samples, on your desktop, click the Start button and then click All Programs ComponentOne Studio for ASP.NET Wijmo Samples. The ControlExplorer sample includes a section that details some of the functionality available in the C1RadialGauge control. C# Samples The following pages within the ControlExplorer sample installed with ComponentOne Studio for ASP.NET Wijmo detail the C1RadialGauge control's functionality: Sample Overview HalfCircle Logarithmic Margin Position RPM Speedometer Template Description This sample illustrates how to create a basic C1RadialGauge control. The sample demonstrates how to create a half circle-shaped interactive C1RadialGauge control. This sample shows how to create non-uniform tick marks with the Islogarithmic and LogarithmicBase properties. This sample demonstrates adding a margin around the control. This example demonstrates how to customize the appearance and position of major and minor tick marks in the radial gauge. This sample illustrates styling the gauge with a template. This example displays a radial gauge styled like a speedometer. This example demonstrates how to use the Template property to style the gauge. 15

20

21 RadialGauge for ASP.NET Wijmo Task-Based Help The task-based help assumes that you are familiar with programming in ASP.NET and know how to use controls in general. By following the steps outlined in the help, you will be able to create projects demonstrating a variety of C1RadialGauge's features, and get a good sense of what the C1RadialGauge control can do. Each topic provides a solution for specific tasks using the C1RadialGauge control. Each task-based help topic also assumes that you have created a new ASP.NET project and added references to the appropriate assemblies. Creating a C1RadialGauge in Code Creating a C1RadialGauge control in code is fairly simple. In the following steps you'll add a PlaceHolder control to the page, add an import statement, add and customize the C1RadialGauge, and add the control to the PlaceHolder. Complete the following steps: 1. In Design view, double-click the page to create the Page_Load event and switch to Code view. 2. Add the following statement to the top of the Code Editor to import the appropriate namespace: Visual Basic Imports C1.Web.Wijmo.Controls.C1Gauge C# using C1.Web.Wijmo.Controls.C1Gauge; 3. Add the following code to the Page_Load event to create and customize the C1RadialGauge control. Visual Basic ' Create a new C1RadialGauge. Dim C1RG As New C1RadialGauge ' Set the control's size and value. C1RG.Height = 200 C1RG.Width = 200 C1RG.Min = 0 C1RG.Max = 100 C1RG.Value = 60 ' Add the C1RadialGauge to the PlaceHolder control. Dim PlaceHolder1 As New PlaceHolder PlaceHolder1.Controls.Add(C1RG) form1.controls.add(placeholder1) C# // Create a new C1RadialGauge. C1RadialGauge C1RG = new C1RadialGauge(); // Set the control's size and value. C1RG.Height = 200; C1RG.Width = 200; C1RG.Min = 0; C1RG.Max = 100; C1RG.Value = 60; // Add the C1RadialGauge to the PlaceHolder control. PlaceHolder PlaceHolder1 = new PlaceHolder(); 17

22 PlaceHolder1.Controls.Add(C1RG); form1.controls.add(placeholder1); What You've Accomplished Run your application and observe that the C1RadialGauge control was created. Resizing the Control You can easily change the height and width on the C1RadialGauge by setting the Height and Width properties. By default the height of the control is set to 400px and the width of the control is set to 600px. You can easily change the control's height and width in Source view, from the Properties window, or in code. In Source View In Source view add Height="200px" and Width="300px" in the <wijmo:c1radialgauge> tag to the size you wish to set the control's height and width to, for example: <wijmo:c1radialgauge ID="C1RadialGauge1" runat="server" Height="200px" Width="300px"> The above will resize the control to 200 pixels tall and 300 pixels wide. From the Properties Window You can change the Height and Width properties to set the control's height and width in the Properties window: In Code 1. Click on the C1RadialGauge to select it. 2. Navigate to the Properties window and if needed expand the Layout node to locate the Height and Width properties. 3. Next to Height, enter a value for the size you want the control's height to be, for example "200px". 4. Next to Width, enter a value for the size you want the control's width to be, for example "300px". 5. Press the ENTER key or click outside of the Properties window for the height and width you set to be applied to the C1RadialGauge control. Add the following code to the Page_Load event to set the Height and Width properties to 200 pixels tall and 300 pixels wide: C# Visual Basic Me.C1RadialGauge1.Height = 200 Me.C1RadialGauge1.Width =

23 this.c1radialgauge1.height = 200; this.c1radialgauge1.width = 300; Setting the Start Value In this topic you'll change the C1RadialGauge control's Value property. The Value property determines the currently selected number. By default the C1RadialGauge control starts with its Value set to 0 but you can customize this number at design time, in XAML, and in code. Note that although this topic sets the Value of the C1RadialGauge control, the same steps can be used to customize the Value of other controls. At Design Time To set the C1RadialGauge control's Value property at run time, complete the following steps: In XAML 1. Click the C1RadialGauge control once to select it. 2. Navigate to the Properties window, and enter a number, for example "20", in the text box next to the Value property. This will set the Value property to the number you chose. For example, to set the Value property add Value="20" to the <wijmo:c1radialgauge> tag so that it appears similar to the following: <wijmo:c1radialgauge Value="20"> In Code For example, to set the Value property, add the following code to your project: Visual Basic C1RadialGauge1.Value = 20 C# c1radialgauge1.value = 20; Run your project and observe: Initially the gauge's Pointer will be set to the Value you selected. Setting the Minimum and Maximum Values You can use the Min and Max properties to set a numeric range that the gauge would be limited to. You can customize the Min and Max values at design time, in XAML, and in code. Note: When setting the Min and Max properties, the Min should be smaller than the Max. Also be sure to set the Value property to a number within the Min and Max range (in the example below, the Value is set to 0, which falls within the range set below). At Design Time To set the Min and Max for the C1RadialGauge at run time, complete the following steps: 1. Click the C1RadialGauge control once to select it. 2. Navigate to the Properties window, and enter a number, for example 50, next to the Max property. 3. In the Properties window, enter a number, for example -50, next to the Min property. This will set Min and Max values. In XAML 19

24 To set the C1RadialGauge control's Min and Max in XAML add Maximum="50" Minimum="-50" to the <wijmo:c1radialgauge> tag so that it appears similar to the following: <wijmo:c1radialgauge Name="C1RadialGauge1" Maximum="50" Minimum="-50"> In Code To set the C1RadialGauge control's Min and Max add the following code to your project: Visual Basic C1RadialGauge1.Minimum = -50 C1RadialGauge1.Maximum = 50 C# c1radialgauge1.minimum = -50; c1radialgauge1.maximum = 50; Run your project and observe: The gauge will be limited to the selected range at run time. RadialGauge for ASP.NET Wijmo Client-Side Reference As part of the amazing ComponentOne Web stack, the Wijmo jquery UI widgets are optimized for client-side Web development and utilize the power of jquery for superior performance and ease of use. The ComponentOne Wijmo Web site at provides everything you need to know about Wijmo widgets, including demos and samples, documentation, theming examples, support and more. The client-side documentation provides an overview, sample markup, options, events, and methods for each widget. To get started with client-side Web development for RadialGauge for ASP.NET Wijmo, click one of the external links to view our Wijmo wiki documentation. Note that the Overview topic for each of the widgets applies mainly to the widget, not to the server-side ASP.NET Wijmo control. wijradialgauge dependencies wijradialgauge options 20

ComponentOne. LinearGauge for ASP.NET Wijmo

ComponentOne. LinearGauge for ASP.NET Wijmo ComponentOne LinearGauge for ASP.NET Wijmo Copyright 1987-2012 GrapeCity, Inc. All rights reserved. ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA

More information

ComponentOne. HyperPanel for WPF

ComponentOne. HyperPanel for WPF ComponentOne HyperPanel for WPF Copyright 1987-2012 GrapeCity, Inc. All rights reserved. ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Internet:

More information

ComponentOne. Gauges for WinForms

ComponentOne. Gauges for WinForms ComponentOne Gauges for WinForms Copyright 1987-2012 GrapeCity, Inc. All rights reserved. ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Internet:

More information

Sparkline for ASP.NET WebForms

Sparkline for ASP.NET WebForms Cover Page ComponentOne Sparkline for ASP.NET WebForms Cover Page Info ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Website: http://www.componentone.com

More information

ComponentOne. Tabs for ASP.NET Wijmo

ComponentOne. Tabs for ASP.NET Wijmo ComponentOne Tabs for ASP.NET Wijmo Copyright 1987-2012 GrapeCity, Inc. All rights reserved. ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Internet:

More information

ComponentOne. Scheduler for LightSwitch

ComponentOne. Scheduler for LightSwitch ComponentOne Scheduler for LightSwitch Copyright 2012 ComponentOne LLC. All rights reserved. Corporate Headquarters ComponentOne LLC 201 South Highland Avenue 3 rd Floor Pittsburgh, PA 15206 USA Internet:

More information

ComponentOne. Gauges for WPF

ComponentOne. Gauges for WPF ComponentOne Gauges for WPF Copyright 1987-2012 GrapeCity, Inc. All rights reserved. ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Internet: info@componentone.com

More information

Doc-To-Help 2009 Quick Tour

Doc-To-Help 2009 Quick Tour Getting Started Workbook Doc-To-Help 2009 Quick Tour Editor: Microsoft Word Copyright 1987-2009 ComponentOne LLC. All rights reserved. Corporate Headquarters ComponentOne LLC 201 South Highland Avenue

More information

Guided Tour Copyright 1987-2007 ComponentOne LLC. All rights reserved. Corporate Headquarters ComponentOne LLC 201 South Highland Avenue 3 rd Floor Pittsburgh, PA 15206 USA Internet: Web site: info@componentone.com

More information

ComponentOne. Word for WinForms

ComponentOne. Word for WinForms ComponentOne Word for WinForms ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Website: http://www.componentone.com Sales: sales@componentone.com Telephone:

More information

ComponentOne. PdfViewer for WPF and Silverlight

ComponentOne. PdfViewer for WPF and Silverlight ComponentOne PdfViewer for WPF and Silverlight GrapeCity US GrapeCity 201 South Highland Avenue, Suite 301 Pittsburgh, PA 15206 Tel: 1.800.858.2739 412.681.4343 Fax: 412.681.4384 Website: https://www.grapecity.com/en/

More information

Windows 7 Control Pack for WinForms

Windows 7 Control Pack for WinForms ComponentOne Windows 7 Control Pack for WinForms By GrapeCity, Inc. Copyright 1987-2012 GrapeCity, Inc. All rights reserved. Corporate Headquarters ComponentOne, a division of GrapeCity 201 South Highland

More information

TreeView for ASP.NET Wijmo

TreeView for ASP.NET Wijmo ComponentOne TreeView for ASP.NET Wijmo By GrapeCity, Inc. Copyright 1987-2012 GrapeCity, Inc. All rights reserved. Corporate Headquarters ComponentOne, a division of GrapeCity 201 South Highland Avenue

More information

Desktop Studio: Charts. Version: 7.3

Desktop Studio: Charts. Version: 7.3 Desktop Studio: Charts Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

ComponentOne. Maps for WinForms

ComponentOne. Maps for WinForms ComponentOne Maps for WinForms ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Website: http://www.componentone.com Sales: sales@componentone.com Telephone:

More information

Desktop Studio: Charts

Desktop Studio: Charts Desktop Studio: Charts Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Working with Charts i Copyright 2011 Intellicus Technologies This document

More information

Doc-To-Help 2014 Quick Tour

Doc-To-Help 2014 Quick Tour Getting Started Workbook Doc-To-Help 2014 Quick Tour Editor: Microsoft Word Copyright 2014 GrapeCity, inc. All rights reserved. Corporate Headquarters ComponentOne, a division of GrapeCity, inc. 201 South

More information

Road Map for Essential Studio 2010 Volume 1

Road Map for Essential Studio 2010 Volume 1 Road Map for Essential Studio 2010 Volume 1 Essential Studio User Interface Edition... 4 Essential Grid... 4 Essential Grid ASP.NET... 4 Essential Grid ASP.NET MVC... 4 Essential Grid Windows Forms...

More information

ComponentOne. MultiSelect for WinForms

ComponentOne. MultiSelect for WinForms ComponentOne MultiSelect for WinForms GrapeCity US GrapeCity 201 South Highland Avenue, Suite 301 Pittsburgh, PA 15206 Tel: 1.800.858.2739 412.681.4343 Fax: 412.681.4384 Website: https://www.grapecity.com/en/

More information

ComponentOne. Foxy for ASP.NET

ComponentOne. Foxy for ASP.NET ComponentOne Foxy for ASP.NET Copyright 1987-2010 ComponentOne LLC. All rights reserved. Corporate Headquarters ComponentOne LLC 201 South Highland Avenue 3rd Floor Pittsburgh, PA 15206 USA Internet: Web

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

Reference Services Division Presents. Microsoft Word 2

Reference Services Division Presents. Microsoft Word 2 Reference Services Division Presents Microsoft Word 2 Welcome to Word 2. This handout includes step-by-step instructions for each of the tasks we will be covering in class. Changes to Word 2007 There are

More information

PowerPoint 2013 Advanced. PowerPoint 2013 Advanced SAMPLE

PowerPoint 2013 Advanced. PowerPoint 2013 Advanced SAMPLE PowerPoint 2013 Advanced PowerPoint 2013 Advanced PowerPoint 2013 Advanced Page 2 2013 Cheltenham Courseware Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without

More information

Table of Contents 1-4. User Guide 5. Getting Started 6. Report Portal 6. Creating Your First Report Previewing Reports 11-13

Table of Contents 1-4. User Guide 5. Getting Started 6. Report Portal 6. Creating Your First Report Previewing Reports 11-13 Table of Contents Table of Contents 1-4 User Guide 5 Getting Started 6 Report Portal 6 Creating Your First Report 6-11 Previewing Reports 11-13 Previewing Reports in HTML5 Viewer 13-18 Report Concepts

More information

PowerPoint 2013 Advanced. PowerPoint 2013 Advanced SAMPLE

PowerPoint 2013 Advanced. PowerPoint 2013 Advanced SAMPLE PowerPoint 2013 Advanced PowerPoint 2013 Advanced PowerPoint 2013 Advanced Page 2 2013 Cheltenham Courseware Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without

More information

PowerPoint Tutorial 2: Adding and Modifying Text and Graphic Objects 2013

PowerPoint Tutorial 2: Adding and Modifying Text and Graphic Objects 2013 PowerPoint Tutorial 2: Adding and Modifying Text and Graphic Objects Microsoft Office 2013 2013 Objectives Insert a graphic from a file Insert, resize, and reposition clip art Modify the color and shape

More information

Keynote 08 Basics Website:

Keynote 08 Basics Website: Website: http://etc.usf.edu/te/ Keynote is Apple's presentation application. Keynote is installed as part of the iwork suite, which also includes the word processing program Pages and the spreadsheet program

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Publisher 2016 Foundation SAMPLE

Publisher 2016 Foundation SAMPLE Publisher 2016 Foundation Publisher 2016 Foundation Microsoft Publisher 2016 Foundation - Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied

More information

Microsoft Publisher 2013 Foundation. Publisher 2013 Foundation SAMPLE

Microsoft Publisher 2013 Foundation. Publisher 2013 Foundation SAMPLE Microsoft Publisher 2013 Foundation Publisher 2013 Foundation Microsoft Publisher 2013 Foundation - Page 2 2013 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may

More information

Publisher 2016 Foundation. North American Edition SAMPLE

Publisher 2016 Foundation. North American Edition SAMPLE Publisher 2016 Foundation Publisher 2016 Foundation North American Edition Microsoft Publisher 2016 Foundation - Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this

More information

Sparkline for WPF 1. ComponentOne. Sparkline for WPF

Sparkline for WPF 1. ComponentOne. Sparkline for WPF Sparkline for WPF 1 ComponentOne Sparkline for WPF Sparkline for WPF 2 ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Website: http://www.componentone.com

More information

PowerPoint 2016 Advanced SAMPLE

PowerPoint 2016 Advanced SAMPLE PowerPoint 2016 Advanced PowerPoint 2016 Advanced PowerPoint 2016 Advanced Page 2 2015 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without written

More information

Microsoft Office Training Skills 2010

Microsoft Office Training Skills 2010 Microsoft Office Training Skills 2010 Lesson 5 Working with pages, Tables, Shapes and Securing Documents Adding Page color Add color to the background of one or several pages in the document. 1. Click

More information

CS7026 CSS3. CSS3 Graphics Effects

CS7026 CSS3. CSS3 Graphics Effects CS7026 CSS3 CSS3 Graphics Effects What You ll Learn We ll create the appearance of speech bubbles without using any images, just these pieces of pure CSS: The word-wrap property to contain overflowing

More information

SAMPLE. PowerPoint 2010 Advanced. PowerPoint 2010 Advanced. PowerPoint 2010 Advanced Page 1

SAMPLE. PowerPoint 2010 Advanced. PowerPoint 2010 Advanced. PowerPoint 2010 Advanced Page 1 PowerPoint 2010 Advanced PowerPoint 2010 Advanced Page 1 PowerPoint 2010 Advanced 2010 Cheltenham Courseware Pty. Ltd. www.cheltenhamcourseware.com.au PowerPoint 2010 Advanced Page 2 2010 Cheltenham Courseware

More information

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23

Chapter 4 Printing and Viewing a Presentation Using Proofing Tools I. Spell Check II. The Thesaurus... 23 PowerPoint Level 1 Table of Contents Chapter 1 Getting Started... 7 Interacting with PowerPoint... 7 Slides... 7 I. Adding Slides... 8 II. Deleting Slides... 8 III. Cutting, Copying and Pasting Slides...

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Reader Release Notes. January 7, Release version: 3.1

Reader Release Notes. January 7, Release version: 3.1 Reader Release Notes January 7, 2019 Release version: 3.1 MindManager Reader Version 3.1... 2 General Information... 2 New in Version 3.1... 2 Supported Features... 2 Elements... 2 Text... 3 Navigation...

More information

ComponentOne. SplitContainer for WinForms

ComponentOne. SplitContainer for WinForms ComponentOne SplitContainer for WinForms ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Website: http://www.componentone.com Sales: sales@componentone.com

More information

COMSC-031 Web Site Development- Part 2

COMSC-031 Web Site Development- Part 2 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal December 5, 2013 Chapter 13 13 Designing a Web Site with CSS In addition to creating styles for text, you can use CSS to create

More information

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved.

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved. Master web design skills with Microsoft FrontPage 98. This step-by-step guide uses over 40 full color close-up screen shots to clearly explain the fast and easy way to design a web site. Use edteck s QuickGuide

More information

DrawPlus X8. Quick Start Guide. Simple steps for getting started with your drawing.

DrawPlus X8. Quick Start Guide. Simple steps for getting started with your drawing. DrawPlus X8 Quick Start Guide Simple steps for getting started with your drawing. In this guide, we will refer to specific tools, toolbars and tabs. Use this visual reference to help locate them on the

More information

SciGraphica. Tutorial Manual - Tutorials 1and 2 Version 0.8.0

SciGraphica. Tutorial Manual - Tutorials 1and 2 Version 0.8.0 SciGraphica Tutorial Manual - Tutorials 1and 2 Version 0.8.0 Copyright (c) 2001 the SciGraphica documentation group Permission is granted to copy, distribute and/or modify this document under the terms

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

Menus and Toolbars for WinForms

Menus and Toolbars for WinForms ComponentOne Menus and Toolbars for WinForms By GrapeCity, Inc. Copyright 1987-2012 GrapeCity, Inc. All rights reserved. Corporate Headquarters ComponentOne, a division of GrapeCity 201 South Highland

More information

MANUAL NO. OPS647-UM-151 USER S MANUAL

MANUAL NO. OPS647-UM-151 USER S MANUAL MANUAL NO. OPS647-UM-151 USER S MANUAL Software Usage Agreement Graphtec Corporation ( Graphtec ) hereby grants the purchaser and authorized User (the User ) the right to use the software (the Software

More information

ComponentOne. LightBox for ASP.NET Web Forms

ComponentOne. LightBox for ASP.NET Web Forms ComponentOne LightBox for ASP.NET Web Forms Copyright 1987-2015 GrapeCity, Inc. All rights reserved. ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA

More information

Publisher 2013 Foundation SAMPLE

Publisher 2013 Foundation SAMPLE Publisher 2013 Foundation Publisher 2013 Foundation Microsoft Publisher 2013 Foundation - Page 2 2013 Cheltenham Group Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied

More information

BarChart for ASP.NET Web Forms

BarChart for ASP.NET Web Forms BarChart for ASP.NET WebForms 1 ComponentOne BarChart for ASP.NET Web Forms BarChart for ASP.NET WebForms 2 ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206

More information

Advanced Layout Tools

Advanced Layout Tools Advanced Layout Tools Graphics Pack Another efficient and affordable ACT! Add-On by http://www.exponenciel.com Advanced Layout Tools Graphics Pack User s Manual 2 Table of content Purpose of the add-on...

More information

POWERPOINT BASICS: MICROSOFT OFFICE 2010

POWERPOINT BASICS: MICROSOFT OFFICE 2010 POWERPOINT BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT POWERPOINT PAGE 03 Microsoft PowerPoint Components SIMPLE TASKS IN MICROSOFT POWERPOINT

More information

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements?

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements? BASIC GAUGE CREATION The Video VBox setup software is capable of using many different image formats for gauge backgrounds, static images, or logos, including Bitmaps, JPEGs, or PNG s. When the software

More information

Microsoft Office Word 2016 for Mac

Microsoft Office Word 2016 for Mac Microsoft Office Word 2016 for Mac Formatting Your Document University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2016 KSU Division of University Information

More information

MICROSOFT WORD 2010 BASICS

MICROSOFT WORD 2010 BASICS MICROSOFT WORD 2010 BASICS Word 2010 is a word processing program that allows you to create various types of documents such as letters, papers, flyers, and faxes. The Ribbon contains all of the commands

More information

Guidelines for Legible and Readable Text, page 2-1 Visual Density Transparent, Translucent, or Opaque?, page 2-3

Guidelines for Legible and Readable Text, page 2-1 Visual Density Transparent, Translucent, or Opaque?, page 2-3 CHAPTER 2 Revised: November 15, 2011 Concepts, page 2-1 s, page 2-4 Reference, page 2-25 Concepts Guidelines for Legible and Readable Text, page 2-1 Visual Density Transparent, Translucent, or Opaque?,

More information

Adobe Flash CS4 Part 1: Introduction to Flash

Adobe Flash CS4 Part 1: Introduction to Flash CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Flash CS4 Part 1: Introduction to Flash Fall 2010, Version 1.0 Table of Contents Introduction...3 Downloading the Data Files...3

More information

GreenFolders User Manual

GreenFolders User Manual GreenFolders User Manual Welcome! Welcome to GreenFolders the Electronic Records Management Solution. GreenFolders allows you to store and retrieve files with many easy-to-use features for working with

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

Chapter 1 Introducing Draw

Chapter 1 Introducing Draw Draw Guide Chapter 1 Introducing Draw Drawing Vector Graphics in LibreOffice Copyright This document is Copyright 2013 by its contributors as listed below. You may distribute it and/or modify it under

More information

For the Beginner: c) Click the settings tab to set screen resolution d) Set resolution with slider bar.

For the Beginner: c) Click the settings tab to set screen resolution d) Set resolution with slider bar. For the Beginner: Preparing and Logging In to Run JobSite OnLine 1) Jobsite works best with a screen resolution of at least 800 x 600 preferably 1024 x 768. To set this, follow the instructions below.

More information

Guide to WB Annotations

Guide to WB Annotations Guide to WB Annotations 04 May 2016 Annotations are a powerful new feature added to Workbench v1.2.0 (Released May 2016) for placing text and symbols within wb_view tabs and windows. They enable generation

More information

Dialog for ASP.NET Wijmo

Dialog for ASP.NET Wijmo ComponentOne Dialog for ASP.NET Wijmo By GrapeCity, Inc. Copyright 1987-2012 GrapeCity, Inc. All rights reserved. Corporate Headquarters ComponentOne, a division of GrapeCity 201 South Highland Avenue

More information

Microsoft PowerPoint 2013 Beginning

Microsoft PowerPoint 2013 Beginning Microsoft PowerPoint 2013 Beginning PowerPoint Presentations on the Web... 2 Starting PowerPoint... 2 Opening a Presentation... 2 File Tab... 3 Quick Access Toolbar... 3 The Ribbon... 4 Keyboard Shortcuts...

More information

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2 TABLE OF CONTENTS 1 OVERVIEW...1 2 WEB VIEWER DEMO ON DESKTOP...1 2.1 Getting Started... 1 2.1.1 Toolbar... 1 2.1.2 Right-click Contextual Menu... 2 2.1.3 Navigation Panels... 2 2.1.4 Floating Toolbar...

More information

Expression Design Lab Exercises

Expression Design Lab Exercises Expression Design Lab Exercises Creating Images with Expression Design 2 Beaches Around the World (Part 1: Beaches Around the World Series) Information in this document, including URL and other Internet

More information

[Not for Circulation] This document provides a variety of shortcuts for working in PowerPoint 2007.

[Not for Circulation] This document provides a variety of shortcuts for working in PowerPoint 2007. PowerPoint Shortcuts This document provides a variety of shortcuts for working in PowerPoint 2007. Using Slides from Other Presentations To add a slide from an existing presentation to the current presentation,

More information

Welcome. Microsoft PowerPoint 2010 Fundamentals Workshop. Faculty and Staff Development Program

Welcome. Microsoft PowerPoint 2010 Fundamentals Workshop. Faculty and Staff Development Program Faculty and Staff Development Program Welcome Microsoft PowerPoint 2010 Fundamentals Workshop Computing Services and Systems Development Phone: 412-624-HELP (4357) Last Updated: 04/19/13 Technology Help

More information

Getting Started with Eric Meyer's CSS Sculptor 1.0

Getting Started with Eric Meyer's CSS Sculptor 1.0 Getting Started with Eric Meyer's CSS Sculptor 1.0 Eric Meyer s CSS Sculptor is a flexible, powerful tool for generating highly customized Web standards based CSS layouts. With CSS Sculptor, you can quickly

More information

Graduate Health Sciences Word Topics

Graduate Health Sciences Word Topics Graduate Health Sciences Word Topics This workshop is based on topics provided by Graduated Health Sciences. Have you ever moved text from one part of a Word document to another, and the formatting changed

More information

How to create a What If simulation in SAP Analytics Cloud

How to create a What If simulation in SAP Analytics Cloud How to create a What If simulation in SAP Analytics Cloud Author: Ingo Hilgefort, SAP Canada 1 1 Copyright 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may

More information

Excel 2013 Intermediate

Excel 2013 Intermediate Instructor s Excel 2013 Tutorial 2 - Charts Excel 2013 Intermediate 103-124 Unit 2 - Charts Quick Links Chart Concepts Page EX197 EX199 EX200 Selecting Source Data Pages EX198 EX234 EX237 Creating a Chart

More information

Create ruler guides. Create a ruler guide

Create ruler guides. Create a ruler guide Create ruler guides Ruler guides are different from grids in that they can be positioned freely on a page or on a pasteboard. You can create two kinds of ruler guides: page guides, which appear only on

More information

Comic Life. Creating Photo Comics. Classroom Course Manual

Comic Life. Creating Photo Comics. Classroom Course Manual Comic Life Creating Photo Comics Classroom Course Manual Written, designed, and produced by: DoIT Software Training for Students Last Updated 1/14/2017 About Software Training for Students Software Training

More information

Introduction. Watch the video below to learn more about getting started with PowerPoint. Getting to know PowerPoint

Introduction. Watch the video below to learn more about getting started with PowerPoint. Getting to know PowerPoint PowerPoint 2016 Getting Started With PowerPoint Introduction PowerPoint is a presentation program that allows you to create dynamic slide presentations. These presentations can include animation, narration,

More information

Learn more about Pages, Keynote & Numbers

Learn more about Pages, Keynote & Numbers Learn more about Pages, Keynote & Numbers HCPS Instructional Technology May 2012 Adapted from Apple Help Guides CHAPTER ONE: PAGES Part 1: Get to Know Pages Opening and Creating Documents Opening a Pages

More information

Motic Images Plus 3.0 ML Software. Windows OS User Manual

Motic Images Plus 3.0 ML Software. Windows OS User Manual Motic Images Plus 3.0 ML Software Windows OS User Manual Motic Images Plus 3.0 ML Software Windows OS User Manual CONTENTS (Linked) Introduction 05 Menus and tools 05 File 06 New 06 Open 07 Save 07 Save

More information

Exercise III: Creating a Logo with Illustrator CS6

Exercise III: Creating a Logo with Illustrator CS6 Exercise III: Creating a Logo with Illustrator CS6 Project 1: Creating Logos with the Shape Tools Now that we have some experience with Illustrator s tools, let s expand our goal to create a logo, web

More information

Adobe Illustrator CS Design Professional CREATING TEXT AND GRADIENTS

Adobe Illustrator CS Design Professional CREATING TEXT AND GRADIENTS Adobe Illustrator CS Design Professional CREATING TEXT AND GRADIENTS Chapter Lessons Create and format text Flow text into an object Position text on a path Create colors and gradients Apply colors and

More information

ArcView QuickStart Guide. Contents. The ArcView Screen. Elements of an ArcView Project. Creating an ArcView Project. Adding Themes to Views

ArcView QuickStart Guide. Contents. The ArcView Screen. Elements of an ArcView Project. Creating an ArcView Project. Adding Themes to Views ArcView QuickStart Guide Page 1 ArcView QuickStart Guide Contents The ArcView Screen Elements of an ArcView Project Creating an ArcView Project Adding Themes to Views Zoom and Pan Tools Querying Themes

More information

Contents. I. Starting a New Presentation Try it! II. Choosing a Theme III. Tailoring the theme IV Background Styles...

Contents. I. Starting a New Presentation Try it! II. Choosing a Theme III. Tailoring the theme IV Background Styles... Contents PowerPoint 2007... 2 I. Starting a New Presentation... 4... 4 II. Choosing a Theme... 4... 4 III. Tailoring the theme... 5 IV Background Styles... 5... 5 V. Add slides, pick layouts... 6... 6

More information

PowerPoint Slide Basics. Introduction

PowerPoint Slide Basics. Introduction PowerPoint 2016 Slide Basics Introduction Every PowerPoint presentation is composed of a series of slides. To begin creating a slide show, you'll need to know the basics of working with slides. You'll

More information

Kendo UI. Builder by Progress : Using Kendo UI Designer

Kendo UI. Builder by Progress : Using Kendo UI Designer Kendo UI Builder by Progress : Using Kendo UI Designer Copyright 2017 Telerik AD. All rights reserved. December 2017 Last updated with new content: Version 2.1 Updated: 2017/12/22 3 Copyright 4 Contents

More information

Work with Shapes. Concepts CHAPTER. Concepts, page 3-1 Procedures, page 3-5

Work with Shapes. Concepts CHAPTER. Concepts, page 3-1 Procedures, page 3-5 3 CHAPTER Revised: November 15, 2011 Concepts, page 3-1, page 3-5 Concepts The Shapes Tool is Versatile, page 3-2 Guidelines for Shapes, page 3-2 Visual Density Transparent, Translucent, or Opaque?, page

More information

Data Visualization DELMIA Apriso 2017 Implementation Guide

Data Visualization DELMIA Apriso 2017 Implementation Guide Data Visualization DELMIA Apriso 2017 Implementation Guide 2016 Dassault Systèmes. Apriso, 3DEXPERIENCE, the Compass logo and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA, SIMULIA, GEOVIA, EXALEAD,

More information

The Metro Map Maker TM0 Software Requirements Specification

The Metro Map Maker TM0 Software Requirements Specification The Metro Map Maker TM0 Software Requirements Specification Author: Richard McKenna Debugging Enterprises TM Based on IEEE Std 830 TM -1998 (R2009) document format Copyright 2017 Debugging Enterprises

More information

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

More information

Keynote Basics Website:

Keynote Basics Website: Keynote Basics Website: http://etc.usf.edu/te/ Keynote is Apple's presentation application. Keynote is installed as part of the iwork suite, which also includes the word processing program Pages. If you

More information

ComponentOne. Wizard for ASP.NET Web Forms

ComponentOne. Wizard for ASP.NET Web Forms ComponentOne Wizard for ASP.NET Web Forms Copyright 1987-2015 GrapeCity, Inc. All rights reserved. ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA

More information

Table of Contents The University of Akron These materials were developed and are owned by The University of Akron. All rights reserved.

Table of Contents The University of Akron These materials were developed and are owned by The University of Akron. All rights reserved. Table of Contents COURSE OVERVIEW... 2 CONVENTIONS USED IN THIS MANUAL... 3 LESSON 1: SYMBOLS... 4 INSERTING SYMBOLS... 4 USING AUTOCORRECT TO INSERT SYMBOLS... 5 TURN ON AUTOCORRECT... 5 LESSON 2: SPECIAL

More information

Chapter 6 Formatting Graphic Objects

Chapter 6 Formatting Graphic Objects Impress Guide Chapter 6 OpenOffice.org Copyright This document is Copyright 2007 by its contributors as listed in the section titled Authors. You can distribute it and/or modify it under the terms of either

More information

The Domino Designer QuickStart Tutorial

The Domino Designer QuickStart Tutorial The Domino Designer QuickStart Tutorial 1. Welcome The Domino Designer QuickStart Tutorial You've installed Domino Designer, you've taken the Designer Guided Tour, and maybe you've even read some of the

More information

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website.

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website. 9 Now it s time to challenge the serious web developers among you. In this section we will create a website that will bring together skills learned in all of the previous exercises. In many sections, rather

More information

Chapter 7 Inserting Spreadsheets, Charts, and Other Objects

Chapter 7 Inserting Spreadsheets, Charts, and Other Objects Impress Guide Chapter 7 Inserting Spreadsheets, Charts, and Other Objects OpenOffice.org Copyright This document is Copyright 2007 by its contributors as listed in the section titled Authors. You can distribute

More information

PowerPoint. Tutorial 1 Creating a Presentation. Tutorial 2 Applying and Modifying Text and Graphic Objects

PowerPoint. Tutorial 1 Creating a Presentation. Tutorial 2 Applying and Modifying Text and Graphic Objects PowerPoint Tutorial 1 Creating a Presentation Tutorial 2 Applying and Modifying Text and Graphic Objects Tutorial 3 Adding Special Effects to a Presentation COMPREHENSIVE PowerPoint Tutorial 1 Creating

More information

LABEL MATRIX TEKLYNX V E R S I O N 8 Q U I C K S T A R T G U I D E

LABEL MATRIX TEKLYNX V E R S I O N 8 Q U I C K S T A R T G U I D E TEKLYNX LABEL MATRIX V E R S I O N 8 Q U I C K S T A R T G U I D E Note Quick Start Guide The information in this manual is not binding and may be modified without prior notice. Supply of the software

More information

Introduction. SmartArt Graphics. Word 2010 SmartArt Graphics. Video: SmartArt Graphics in Word To Insert a SmartArt Illustration: Page 1

Introduction. SmartArt Graphics. Word 2010 SmartArt Graphics. Video: SmartArt Graphics in Word To Insert a SmartArt Illustration: Page 1 Word 2010 SmartArt Graphics Introduction Page 1 SmartArt allows you to visually communicate information rather than simply using text. Illustrations can really enhance your document, and SmartArt makes

More information

Perfect Widgets Getting Started. Last modified on: August 26, 2013

Perfect Widgets Getting Started. Last modified on: August 26, 2013 Perfect Widgets Getting Started Last modified on: August 26, 2013 Table of Contents Introduction... 2 Basic Overview... 2 Defining the Logical Structure... 5 Working with the Visual Elements... 8 Adding

More information

Click the buttons in the interactive below to become familiar with the drawing tool's commands.

Click the buttons in the interactive below to become familiar with the drawing tool's commands. Google Documents Inserting Text Boxes and Shapes Introduction Page 1 Google Documents has a drawing tool designed for inserting text boxes and shapes into your document. Although not necessary for every

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information