Posts Tagged asp dotnet
Custom tooltips and Microsoft’s chart control
Posted by Rohland in Development on June 21, 2009
I have been meaning to blog about this topic for a while now because I am interested to find out if anyone else has picked up performance issues when using the Microsoft Chart Controls and the “MapAreaAttributes” property to create custom tooltips.
Before going into the mechanics of creating a custom tooltip as suggested by the documentation provided with the charting framework, I thought I would simply outline how you would create an instance of the default styled tooltip:
1 series.Points.DataBind(data,“X”,“Y”,“Tooltip=MyTooltipProperty”);
The code above illustrates the databinding capabilities of the charting control. The data array is made up of a list of objects that are of type Point which is a simple class I created:
1 public class Point
2 {
3 public double X {get;set;}
4 public double Y { get; set; }
5
6 public string MyTooltipProperty { get; set; }
7
8 public Point()
9 {
10 this.MyTooltipProperty = “Hello!”;
11 }
12 }
From the above it is obvious that each data point’s tooltip will look like something like this:

The tooltip is simply rendered using the relevant browser’s default implementation for elements.
Custom Tooltips:
You may be aware of the charting framework’s capability for creating rich HTML tooltips using the MapAreaAttributes property. As illustrated in an example provided with the framework you could create an HTML tooltip using code similar to that shown below:
series.Points[j].MapAreaAttributes = “onmouseover=\”DisplayToolTip(’<strong>Hello From an HTML tooltip</strong>’);\” onmouseout=\”HideTooltip();\”"
The DisplayTooltip method referenced is a JavaScript method which essentially displays an absolutely positioned element which tracks your mouse position. The method is fired as you hover over the data point area (which is defined by an image area map). The parameter passed to the method is injected into the element as HTML. As you mouse out of the area (the relevant data point) the Hidetooltip method fires and hides the element displaying the custom tooltip. Using this methodology your tooltip could look something like this:

This looks promising because it illustrates the capability to extend our tooltips to include images, links etc. however, there is a caveat. I picked up an issue when you have a chart with a large number of data points, or a number of charts on a single page that utilise this feature. I started noticing that page loads took longer than usual. I put together a test page that rendered 40 instances of the same chart as shown above using the default tooltip. With tracing turned on the page took roughly 270ms to render:

By implementing one extra line of code to implement my rich HTML tooltip using the MapAreaAttributes property as outlined earlier, the page took almost 5 seconds to render!

It turns out anyone who dares to use the MapAreaAttributes property is severely penalised! Clearly we can’t put a page into production that takes 5 seconds just to render our charts, so we either need to revert to our dull looking tooltips or look for other ways to achieve rich HTML tooltip functionality.
Now, we know that setting the tooltip property doesn’t seem to have any performance impact but that it doesn’t result in a pretty looking tooltip either, but what if we could use the tooltip property to store the HTML tooltip markup. I know what your thinking:

Yuck. That will certainly have your users scratching their heads. So, what next? So far we know that using the example as provided by the charting documentation has an adverse affect on rendering times so that’s not ideal. Default tooltip styles work without performance issues but don’t allow us to render rich tooltips. Injecting HTML into the default tooltip property means our users need to slap on their XHTML goggles.
Well, there is an option available which I will outline here. Essentially, it relies on the ability to interpret the default tooltip property and project it into a custom tooltip that we control. If we look at the HTML rendered by the chart control, you will notice an associated image map that looks something like this:

As you can see, our HTML tooltip detail is sitting inside the title property, encoded of course. If we leave the mark-up untouched and hover over any element on the chart, the default tooltip is rendered with unparsed HTML. Thankfully, we can access this image map using JavaScript to rebuild the image map with mouseover/out events to render our custom tooltip. While this is exactly what setting the MapAreaAttributes property is supposed to do, modifying the rendered HTML to do the same thing bypasses the performance issue noted. I have provided the JavaScript method below which rebuilds the image map. All that is required, from a server side scripting point of view, is the registration of a start-up script to process any chart you wish to load with custom tooltips.
1 RebuildImageMap: function(id) {
2 // Fetch the image and grab the imagemap ID
3 var map = $(“#” + id).attr(“usemap”);
4
5 // If the map ID is null, then perhaps there
6 // were no datapoints. Don’t bother
7 // processing an empty set
8 if (map == null)
9 return;
10
11 // Fetch the map element using jQuery and
12 // return the raw HTML element
13 var areaMap = $(map)[0];
14 if (areaMap == null) {
15 return;
16 }
17
18 // Create an empty array to store our new elements
19 var elementArray = [];
20
21 // Iterate over existing map elements and create a new
22 // set with our mouseover/out events
23 for (var i = 0; i < areaMap.areas.length; i++) {
24 var oldAreaElement = areaMap.areas[i];
25 var element = document.createElement(“AREA”);
26 element.shape = oldAreaElement.shape;
27 element.coords = oldAreaElement.coords;
28
29 element.tooltip = oldAreaElement.title;
30 element.onmouseover =
31 function() { DisplayTooltip(this.tooltip); };
32 element.onmouseout =
33 function() { HideTooltip(); };
34 element.href = oldAreaElement.href;
35 elementArray[elementArray.length] = element;
36 }
37 // Get rid of the old map elements
38 areaMap.innerHTML = ”;
39
40 // Add our new elements back in
41 for (var i = 0; i < elementArray.length; i++) {
42 areaMap.appendChild(elementArray[i]);
43 }
44
45 }
The code above utilises jQuery which is useful, but not required to get the job done. If you are going to use another framework, just note that the map attribute (which contains the map’s ID) is prefixed with a #. You may want to get rid of that. The code above is a modified
snippet of an existing class. The DisplayTooltip method simply takes the tooltip HTML and loads it into a custom hidden element on the page. It then displays the element and tracks the mouse position so the element moves as the user’s cursor does. The HideTooltip method simply hides the tooltip and resets the HTML content. Using this technique, our HTML tooltip is rendered correctly without using the MapAreaAttributes property.

So far I have tested this method of rendering custom tooltips in Firefox, IE 7/8 and Chrome. Its a pity that this was required in the first place. I am really not sure why setting the MapAreaAttributes property has such a huge impact on rendering times. If anyone could shed light on the matter, please feel free to post the detail! For now, the implementation above will suffice. Since the image map processing is performed on the client side, there is no effect on the server side processing time.
Hope this helps someone out there.
AJAX Control Toolkit Update
Posted by Rohland in Development on May 14, 2009
A new version of the AJAX Control Toolkit has been released and is now available. You can download it from here.
There are three new controls:
- HTMLEditor – essentially a WYSIWYG editor (similar to FCKEditor). Demo.
- ComboBox – combines the functionality of a TextBox and DropDownList control. Demo.
- ColorPicker – a control which generates a color swatch (in a popup) for users to pick a color from. Demo.
Find out more about the new release here.
Validation with confirmations in ASP .NET
Posted by Rohland in Development on March 12, 2007
In his book Designing The Obvious, Robert Hoekman makes a few good points regarding inline validation techniques. Validation is often neglected when building a web application and little or no time is spent improving validation to give the end-user a better experience when using online forms. Validation should not get in the way of people using your site or web application, it should be seamless. The most effective way to manage validation is to catch errors before they happen. This would seem obvious but many of us out there are guilty are not paying attention to validation. Supplying hints of expected content format or simply confirming to a user that he/she has entered the correct data goes a long way to ensuring that a user feels comfortable using your web application.
I am quickly going to show you how to implement a confirmation ‘tick’ using the built in ASP .NET validators in Visual Studio 2005. Assuming that you are using these validators and you expect your clients / users to be using a javascript enabled browser, you can use some simple javascript to implement confirmation ticks every time a user successfuly completes a field.
Using one of the fundamental principals of Ruby on Rails, ‘Convention over Configuration’ we need to set the ID of the tick image to the name of the Textbox + ‘_ValidatorOk’. So if our textbox ID is called ‘Field_Duration’ then our tick image ID is ‘Field_Duration_ValidatorOk’. We also need to set the display style attribute of the image to ‘none’ (style=’display:none’) by default so that the tick is hidden until valid data is entered.
We need to fire off some javascript when the onblur event of our textbox is fired. This javascript will fire the ASP .NET Validators which will let us know if the data is valid or not. If the data is valid we can display the tick. To do this, simply add an onblur event to the Textbox.
Example: <asp:Textbox id=”Field_Duration” runat=”server” Text=”" onblur=”FireCustomValidation(this);” />
Then include the javascript function ‘FireCustomValidation’ which will look something like this:
function FireCustomValidation(fldobj)
{
if (typeof(Page_ClientValidate) == 'function') {
var passed = true;
for (i = 0; i < Page_Validators.length; i++) {
if (Page_Validators[i].controltovalidate == fldobj.id) {
ValidatorValidate(Page_Validators[i]);
if (!Page_Validators[i].isvalid)
passed = false;
}
}
if (passed)
document.getElementById(fldobj.id + 'ValidatorOk').style.display = '';
else
document.getElementById(fldobj.id + 'ValidatorOk').style.display = 'none';
}
}
Now, when the user completes and leaves a field, the function above will execute. The function uses the Client API for the ASP .NET validators (see here). If Client Side Validation is not supported then the function does nothing. Otherwise it iterates through each validator on the page looking for ones that match the field just completed. When found, their respective validation functions are fired. The ‘isvalid’ attribute is then checked, if any of the validators return false then the tick is hidden, if all pass then the tick is shown. You could write some extra code to stop errors occuring if the ‘tick’ object does not exist.
You could include this script in a javascript file that is included in your master page. Using this technique, users feel more confident as they complete your webform. There is a lot more you could do with this code, such as highlight the entire table row when an error occurs.
Hope you found this useful.

What people are saying