by Dundas Software - Product Type: Component / ASP.NET WebForms / 100% Managed Code / AJAX
Hi,
I want to show some toolTip associated with a point in a Series. When I add a Data Point to a series I am assigning the required ToolTip to it.
But the Problem is this ToolTip is shown for entire series, I don't want this to happen. I want the tooltip to be shown only at the point .
Can AnyBody please help ?
Thanks In Advance,
Abhi.
Reply
RE: Inappropriate ToolTip shown for Dundas... sweetvigroen7 [India] 17-Sep-2008 10:00:15
You can use -
Chart1.Series["Default"].Points.DataBind(myDataReader, "Name", "ReorderPoint", "Tooltip=TooltipField");
or
foreach (DataPoint point in Chart1.Series["Default"].Points)
{
point.ToolTip = "SalesCount: " + myDataReader["SalesCount"] + " Region: " + myDataReader["Region"];
myDataReader.Read();
}
Reply
111
Reply
RE: Dundas Chart for ASP.NET Enterprise Ed... silviya.kajar [India] 03-May-2006 13:28:40
Hi,
In dundas chart wizard,after configuring sql data adapter for data source properly,whenever i am clicking on preview data,data is not coming in that table.
can you plz tell me what is the exact procedure for etting data for chart.
ReplyRE: RE: Dundas Chart for ASP.NET Ente... james37cu [United Kingdom] 13-Oct-2006 01:29:19
Do you know how you change the dollar sign to a british pound sign for currency on the points for pie chart?
Reply
Publisher
Primary Category
Related Products
Related Categories