AJAX :: Multiple Series Line Chart Control Using Control Toolkit

Feb 22, 2013

how to work with multiple series! for example: with 2 series and display the name of each series in the graph! like this example: URL...

View 1 Replies


Similar Messages:

AJAX :: Control Toolkit Line Chart Reverse Y Axis

Feb 1, 2014

I am currently making a line chart of Ajax control toolkit referring to an article [URL] .....

It works fines as described. My question is how to reverse Y axis of the line chart. 

I need to place 1 (not 0) at the top of Y axis and biggest number near the bottom with some margin from axis X. The described chart is biggest number neat the top and 0 at the bottom. 

View 1 Replies

AJAX :: Populate Control Toolkit Line Chart Using SQL Server Database

Feb 20, 2013

I work with a charline (ajax control toolkit) and I want to manipulate from code behind but I do not really know how! I have an example but the data are in the aspx code.

<ajaxToolkit:LineChart ID="LineChart1" runat="server"
ChartWidth="450" ChartHeight="300" ChartType="Basic"
ChartTitle="United States versus European Widget Production"
CategoriesAxis="2007,2008,2009,2010,2011,2012"
ChartTitleColor="#0E426C" CategoryAxisLineColor="#D08AD9"

[code]....

View 1 Replies

C# - Multiple Chart Series In Chart Control?

Jan 5, 2011

I am a novice programmer using ms chart control for my dashboard, I have a problem displaying chart series.

Here is my sample query & result

Sample Query: "SELECT Brand, sales, Manufacturer From TABLE"

Sample Result:

[code]....

How can I display BrandA for XValueMember & Salesvalue(10000) for YValueMembers as Series1 having a column chart type.

And to display BrandY & BrandZ for XValueMember ; Salesvalue for YValueMembers as Series2 having a line chart type.

I want my chart to have 2 Y-axis; Series1 for primary Y-axis & series2 for secondary Y-axis.

My problem here is how can I display BrandA in Series1 and BrandY,BrandZ in Series2 where the values are in the same field?

Or is it possible to set more than one data source for the chart control?

I've been working on this for two days but I wasn't able to get the desired result.

View 1 Replies

AJAX :: Unable To Find Pie Chart Control In Control Toolkit

May 7, 2015

I have downloaded the ajax toolkit control i been using it for a  couple of months now. But I cannot see Ajax toolkit pie chart control..

Why will I get it ? Do I have to download seperately?

View 1 Replies

AJAX :: Verify If Points Exists On Line Chart Control

May 7, 2015

This is my aspx code :

<asp:Chart ID="ChartAlertes" runat="server" Width="500px">
<Titles>
<asp:Title Text="Nombre d'alertes et leurs status en fonction des filtres renseignés"
BorderColor="Black" Alignment="TopCenter">
</asp:Title>
</Titles>

[code]...

I display 2 Points (2 columns) in the Chart Control and I change the color of the each Points with :

ChartAlertes.Series[0].Points[0].Color = System. Drawing. Color.Red;ChartAlertes.Series[0].Points[1].Color = System.Drawing.Color.DarkOrange;

But sometimes, I have only 1 Point to display or nothing at all on the Chart. So I'd like to check If there are some Points before to put the color of each Point.

For example :

if (ChartAlertes.Series[0].Empty == false)
{
//...
}

View 1 Replies

AJAX :: Line Chart Control - Display All Values On X Axis

Mar 6, 2013

I work with a tank of visual studio when I click to display the graph he shows not all points on the X axis

for example the table nbr_num_semaine_av contains values in order

(18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,1,2,3,4)

but the graph shows on the X axis only that 18, 38, 41

for (int k = 0; k < semaine.Count(); k++) {
Chart4.Series["Nombre de points terminés"].Points.AddXY(nbr_num_semaine_av[k], nbr_points_Termin[k]);
Chart4.Series["Nombre Total d'element"].Points.AddXY(nbr_num_semaine_av[k], nbr_element.Count());
}
Chart4.Series["Nombre de points terminés"].ChartType = SeriesChartType.Line;
Chart4.Series["Nombre Total d'element"].ChartType = SeriesChartType.Line;
Chart4.Series["Nombre de points terminés"].IsXValueIndexed = true;
Chart4.Visible = true;

View 1 Replies

Web Forms :: Implement Multi-Series Line Chart

Dec 6, 2013

I want to create line chart that shows Daily and last Month result in it (line chart)

View 1 Replies

C# - Highlight One Column In Chart Control Series?

Jan 11, 2010

I'm going through the ASP.NET chart controls WebSamples project but I haven't found what I'm looking for yet. So basically if I had a standard bar chart with data such as below:

John - 68%
Fred - 75%
Mary - 32%
Anne - 88%

Displaying it in one series with names as the x axis and percentages as the y, is there anyway to change or highlight the bar colour of just one, so say all the bars in the series are blue but I want to programmatically change mary's bar colour to red. Is this possible?

View 1 Replies

AJAX :: Control ToolKit / Error Using The Numeric UpDown Control From Ajax Control Toolkit?

Dec 8, 2010

I am Getting the following error using the Numeric UpDown Control from Ajax Control Toolkit.
Assembly 'AjaxControlToolkit, Version=3.0.30512.20315, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' contains a Web resource with name 'AjaxControlToolkit.NumericUpDown.NumericUpDownBehavior.debug.js', but does not contain an embedded resource with name 'AjaxControlToolkit.NumericUpDown.NumericUpDownBehavior.debug.js'.

View 2 Replies

AJAX :: Tool Kit Multiple Line Chart From Database Only One Appear

Dec 10, 2013

I followed the article found in below link. When i run the page, only one line gets generated according to the values retireved last. URL....

C#
string query = string.Format("SELECT CHAR(CDATE, ISO),CSCUNITPRICE FROM UNITZ.DAILYLOG where fundcode = 'BAL'");
DataTable dt = GetData(query);
string[] x = new string[dt.Rows.Count];
decimal[] y = new decimal[dt.Rows.Count];
for (int i = 0; i < dt.Rows.Count; i++)

[code].....

View 1 Replies

Charting - Ms Chart Multiple Series X Value Mismatch?

Sep 3, 2010

I'm currently developing a website that shows multiple charts that I build using data from SQL tables. I've used and followed Scott Mitchell's tutorial [URL] and K. Scott Allen's ChartBuilder class [URL] and all works well.

However when have two series that I want to show on the same Chart, if one set of data does not have all of the X values the other series does, the chart blindly puts all the data on, ignoring trying to match the X values of the other series, therefore mismatching the X values when the chart is shown.

I know that I can fiddle the data so that both sets of data have the same X values, however I'm trying to make the class handle anomalies in the data so that I don't have to worry too much about the data.

View 1 Replies

Line And Points Using C# Chart Control?

Jul 15, 2010

I have data in data table like below.

I am trying to make graph like below using asp.net chart control (made graph in excel with some test data)

points are X and Y values. lines are linear, exponential, logarithmic and power values.

how can I make this chart in asp.net (vb.net or c#)? I am newbie to chart control.

View 1 Replies

Vb.net - Chart Labels To Display At The Data Points On Multiple Series?

Mar 9, 2011

I have an ASP Chart (v4) which displays the data I need perfectly. I want it to show labels at the top of the data points and I am having some difficulty with it.

Here is my code that works for both series but does not display the labels:

[code]....

View 1 Replies

Forms Data Controls :: Adding Multiple Series Of Charts On A Same Chart Which Are At Different Location?

Mar 11, 2010

i am using .net framework 3.5 and visual studio 2008, i want to develope an application

for graphs and charts, so charting control 3.5 i am using.

i want to add multiple series of charts on a same chart which are at different location.How can i do it?

View 1 Replies

C# - MS Chart Control Scale - Line Graph Show 12 Months?

Jun 7, 2010

On my X Axis, I have months. The chart shows up to 11 points, i.e. Jan - Nov of the same year, but when I add 12 points (Jan - Dec), it will do an auto label thing and change the interval for every 4 months.

How can I change the graph so that it shows 12 months before it does the auto labels?

Here is the server control code I am currently using.

[code]....

View 1 Replies

How To Remove The Space Inserted Automatically In Ajax Control Toolkit Tab Panel Control

Mar 29, 2010

The Ajax control toolkit tab panel automatically inserts a space by all four corners of the body. For example, go to http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/Tabs/Tabs.aspx and look at the TabPanel on the page. The is a space before "Signature:" and "Bio:" labels. How can I set the space-width to 0px; in the tabPanel body?

View 1 Replies

C# - Ajax Control Toolkit Modal Popup Extender Target Control Causes Postback

Jul 29, 2010

When I click the button to open the modal popup it shows the popup but then continues and forces a postback causing the page to reload and the modal popup to be hidden again.Here is the markup for the control:

<asp:Button id="LoginOpenButton" runat="server" Text="Login"/>

<asp:Panel ID="ContentPanel" runat="server" CssClass="modalPopup">
<fieldset> [code]....

My script manager has no properties other than the id and runat set.

View 1 Replies

AJAX :: Control Toolkit 40412 / Trying To Use The Calendar Control In A Local Internet Enviroment?

Aug 9, 2010

I'm trying to use the Calendar control in a local intranet enviroment, so I need to put all the Javascript files locally, I've downloaded the Ajax Control Toolkit 40412 source code and extracted the Scripts from

"..AjaxControlToolkit_9c860ac12ae9SampleWebSitesAjaxClientWebSiteScripts",so I write the following code

[Code]....

View 3 Replies

Error Using Editor Control From Ajax Control Toolkit / Value Cannot Be Null Or Empty

Mar 27, 2011

When trying to use the editor control i'm getting the following error:

Value cannot be null or empty.

Parameter name: elementID

Here's my HTML:

[code]....

I'm using asp.net 4 with ajax control toolkit for version 4.

I believe the error is talking about the routing I have. Is there something special I have to do if I want to use the toolkit and custom routing?

View 1 Replies

AJAX :: Control Toolkit Combobox Control Font - Square Is Not Appearing In The Text Area?

Nov 19, 2010

ajaxcontrol toolkit combobox control, a picture is worth than a lot of words so here is the picif you are not able to view then here is the link

http://flic.kr/p/8Uw29z

the problem is the items text in the combox box is having a square beneath at the second character which is hindering the visibility of the list. but the square is not appearing in the text area.

View 7 Replies

AJAX :: Flickering While Using A Ajax Timer Control To Refresh A Chart Control In .net2010?

Nov 3, 2010

[Code]....

Asp.Net Code:-
[Code]....

View 5 Replies

AJAX :: Is It Possible To Customize The Default Accordion Control In The Control Toolkit

Apr 21, 2010

Adding an Accordion only creates the outer most tags. I then have to add the headercssclass, contentcssclass etc. info. Then i have to manually add <Pane> tags, and then add Accordion Pane controls. Using VWDE 2008, is there a way to customize the control so that adding the Accordion control automatically adds this other info? Ideally with 2 Accordion Panes to start, but even just getting the various Accordion properties and the <Pane> tags added would make it much more <Pane>less!

View 3 Replies

AJAX :: Reference The Control Toolkit Dll In Order To Have Access To Control?

Sep 16, 2010

MSDN documentation says that the ScriptManager class is part of the System.Web.UI namespace and I see that I can create a ScriptManager object programmatically. However, I don't see the ScriptManager control on the front-end. Do I need to reference the Ajax Control Toolkit dll in order to have access to control?

View 6 Replies

AJAX :: Difference Between Rating And RatingExtender Control In Control Toolkit?

Aug 30, 2010

Can you tell the difference between Rating and RatingExtender asp.net ajax Control ?

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved