C# - Adding Series Programatically To A Dundas TreeMap?

Jun 8, 2010

I'm trying to programatically add a series to a Dundas TreeMap but I'm getting a Object reference not set to an instance of an object. error. This error looks to be a bug in Dundas, but I was wondering if anyone has tried/managed to do this?

View 1 Replies


Similar Messages:

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

Web Forms :: Programatically Adding Multiple Controls

Nov 12, 2010

Need several instances of label & textbox & linkbutton on a web page, in VB2010, but only the label is displayed.Plus, I need an event when the linkbutton is pressed to read the textbox.

CODE SNIPPET SO FAR:..........

[Code]....
[Code]....

View 3 Replies

Web Forms :: Adding Controls Programatically To A Page From A User Control?

Jan 20, 2010

In a User Control, I need to add a Div to the end of its parent's page. I've done this in a number of ASPX pages, where I put the code to generate the Div and its contents in the page's PreRender event handler, and it works fine. But when I try to do the same thing in the PreRender event handler for the User Control, I get the following error:

The control collection cannot be modified during DataBind, Init, Load, PreRender or Unload phases.How do I accomplish this in a User Control?

View 4 Replies

Getting Data From Dundas Control Before Ajax.Submit In MVC?

Feb 4, 2010

I am working on a project in ASP.NET MVC using C# 3.0.I am using the Dundas Chart Control for OLAP. As the Dundas control does not directly support MVC it is used on a standard ASP.NET page with a codebehind file. This page is displayed in an iFrame of a normal View returned from a Controller Action.I have a button in the iFrame which submits a form via Ajax (using jQuery) to a method on the controller. I have also written an extension method for the OlapChart which returns the XML of the current report.What I am looking for is a way of getting the XML produced by the extension method to the Controller Action which handles the Ajax submit.I have only developed using ASP.NET MVC so I may be missing something obvious with Code Behind and ASP.NET controls.

View 2 Replies

Visual Studio :: Dundas Charts & Microsoft Chart Controls?

Dec 9, 2010

I have a web application develped using VS2008 and the Dundas Charts add-on. I understand that Dundas Charts is no longer supported by Dundas and now belongs to Microsoft. I found what appear to be the chart controls and VS integration downloads:Microsoft Chart Control for Microsoft .NET Framework 3.5Microsoft Chart Controls Add-on for Microsoft Visual Studio 2008What I do not know is what happens if I install these downloads. Does my original Dundas software cease to work? Does the new MS Chart software work like the Dundas version did and is fully compatible with my existing charts? Do I need to rebuild my web sites using the MS Chart integrated software? Does the old Dundas dll file in the in folder have to be replaced or will it work as is? I have not found anything that describes how to install and use this software and the functional differences from Dundas to Microsoft ownership.

View 1 Replies

Configuration :: To Deploy Dundas Charts In .aspx To Godaddy Hosting Account, But They Are Not Showing Up

Jan 20, 2010

I am trying to deploy Dundas charts in .aspx to my Godaddy hosting account, but they are not showing up. The Dundas support team said I need to do the following:

If you are not using BinaryStreaming, the ASPNET user must have enough rights to write temporary images on the server's Hard drive.If using Windows 2003, the IIS_WPG user requires Write and Modify permissions.

However, of course the Godaddy support team told me I need a dedicated server to do those things. We are on a tight budget and I have to work with what I have now.

View 4 Replies

Configuration :: How To Update The Licence For Dundas From Evaluation Version To The Licensed Version

Feb 25, 2011

We have an application that is already deployed in the production environment. And currently it is using Dundas evaluation version. We tried updating it to the licensed version by simply pasting the dll file. but we got the error message as "The file has not been pre-compiled and cannot be requested".

View 1 Replies

Looking For Net Code For Series?

Dec 13, 2010

I need the asp.net code for the below figure..

View 1 Replies

Getting Previous Form In Series Of Forms?

Feb 8, 2010

I am doing account creation process which is containing 5 forms/ screens. On screens user at any screen can click previous button and go to previous screen and change data (but sure it cannot be done on 1st screen, as there is no screen prior to 1st).

If I redirect user to previous screen all data is washed. I am even clearing form. For this I will have to fetch data back from db.

Can there be a way that I may not have to get data from db and data previous form may not be cleared and user can edit anything ?

View 1 Replies

SQL Reporting :: Display A Specific Series?

Feb 22, 2010

I have a report with a line chart that displays customer data. The dataset has year, month, customer, and purchases. The data category group is by year and month. The values are purchases. The series group is by customer with the data sorted in decending order by purchases and a filter of the top 10 purchasers. This works fine as intended.Now I'd like to display just one of those customers on it's own seperate chart. Since I cannot use RowNumber in the filter, how do I accomplish this (i.e. I want to show "series 1" on a chart, "series 2" on another chart, "series 3" on another chart and so on).

View 2 Replies

Web Forms :: Charting Multiple Series

Nov 19, 2013

I have 3 columns of data that get returned from a stored procedure. Date, Error code,and Quantity. On one day we can have 8 different error codes, with different quantities.For example on the date of 18 Nov we had error code 101 = 24, error code 102 = 36, error code 103 = 4, etc. I am trying to display the different error codes in columnswith their quantity by date. There will be multiple columns for a given day because the error codes range from 101 -124. How can I display this? I currently have Just oneat a time being display based on which the end user picks.

If DS.Tables.Count > 0 AndAlso DS.Tables(0).Rows.Count > 0 Then
ErrorCodes.DataSource = DS
ErrorCodes.Series("Exceptions").XValueMember = "Error Date"
ErrorCodes.Series("Exceptions").IsValueShownAsLabel = True
ErrorCodes.Series("Exceptions").YValueMembers = "Total"

[code]....

View 1 Replies

Web Forms :: CrossPage PostBack In Series Of Pages?

Mar 17, 2010

I had a requirement to pass data between pages in my application.I have a Page A where user will input some data and on submit User will be redirected to Page B where again user will enter some more data and on submitting user will be show a confirmation in Page C after doing some calculations and data saving.Following is the idea I was trying to use:

PageA.aspx:

[Code]....

In Page A Codebehind file I am creating following public properties of the inputs to access in Page B:

[Code]....
In PageB.aspx:
using previouspage directive to access page A public properties
<%@ PreviousPageType VirtualPath="~/PageA.aspx" %>

[Code]....

In Page B Codebehind file I am creating following public properties for the inputs to access in Page C:

[Code]....

in PageC.aspx:
using previouspage directive to access page A public properties

<%@ PreviousPageType VirtualPath="~/PageB.aspx" %>


[Code]....
Page C code behind file:

[Code]....

Postback is working fine from Page A to Page B, but when posting data from Page B to Page C, it is automatically redirecting to Page A.

I am not getting any kind of error or anything. page is simply redirecting to Page A. One reason as I understand is that when I post data from Page A to page B. Page A life cycle is executed and Page A becomes null.But when the data is posted to Page C. why the PreviousPage property is checked for Page A?

View 4 Replies

How To Create Multi Series Chart Dynamically

Mar 18, 2010

I want to create multi series asp.net chart in dynamically.I am new one for this concept.

View 1 Replies

SQL Reporting :: ReportViewer Chart With Two Y Series Group?

Jan 7, 2011

I am creating a column and line chart in the same chart using reportviewer 2008.

The chart got two y series 'Number of product order' as column chart and label on left side of chart (unit number count) and total value of orders as line chart with label on right side of chart (unit $ value). Month is on x axis. I am wondering whether it can be done in reportviewer.

View 5 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

Add A Listitem To A Series Of Dropdownmenus After A Databind Occurs?

Jun 9, 2010

In .NET 2.0 Im trying to add a listitem to a series of dropdownmenus after a databind occurs. They menus are created dynamically on pageload. Is this possible?

View 2 Replies

Apply A CssClass To A Series Of Similar Objects With A Different ID?

Dec 1, 2010

I have a large application in which I have lots of Submit - Delete - Cancel - Add and .. buttons. All of them use a same .Button CssClass.

I decided to reach the interface so that I want to differise buttons interface.

How to Apply a CSSClass to a series of similar objects with a different ID

I should Have similar Delete / Submit / Cancel or ... Button interface all over the application

All of the Delete button id are btnDelete and the same for the rest. (btnSubmit - btnCancel ...)

Note that they are Asp control so that only the last part of their name are btnDelete or ... and before Name, you have a client ID like (MainPage_MainControl_TheSimpleForm_btnDelete)

View 3 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

Web Forms :: Save Series Of Numbers 1 To 100 In Database

Jul 22, 2013

I've 2 textboxes which contains range i.e.

texbox1.text = 1
textbox2.text = 100

I want to save each record in table between textbox1 and texbox2 i.e. 1,2, 3, 4....100.

i.e. 

ID   Series

1     1
2     2
3     3
4     4
.      .
.      .
.      .

100 100

View 1 Replies

Web Forms :: Dynamically Create Series Of Dropwonlists From Dataview?

Apr 22, 2010

I am trying to create a page where my user can create a new attribute dropdown for their records. To which I have created a function whereby they can create a new list and add values to it.I have query that returns a dataview with fields List ID, List Name & List Item. I want to generate a new dropdownlist for each new List ID. It should also have auto postback (although, each list will then call the same procedure),This is all new territory to me. Although I'm working in VB, I can usually follow C# examples.

View 2 Replies

SQL Reporting :: Two Series In Same Column Chart In SSRS 2008?

Jan 13, 2010

Is it possible to show the chart like the image in my attachement in Column Chart and in 100% Stacked Column Chart of SSRS 2008.

I like to show two series in same chart. Is it possible in SSRS 2008?

I provided the sample data to test it.

Select 'Fruits' as Category, 'Apple' as Item, 20 as Sales UNION
Select 'Fruits' as Category, 'Orange' as Item, 20 as Sales UNION
Select 'Snacks' as Category, 'Biscuits' as Item, 10 as Sales UNION
Select 'Snacks' as Category, 'Chips' as Item, 10 as Sales UNION
Select 'Snacks' as Category, 'Cakes' as Item, 40 as Sales

View 3 Replies

Chart: Final Series Getting Cut Off When Setting .AxisX.Maximum?

Dec 19, 2010

I'm trying to bind a data table like:

month value
5 345
10 1300
12 450

to an ASP.NET Chart control. My problem is that the data table only contain months that have values while in the chart i want to show the full month range from 1st to the 12th.

So i used :

Chart1.ChartAreas["ChartArea1"].AxisX.Minimum = 1;
Chart1.ChartAreas["ChartArea1"].AxisX.Maximum = 12;

But when i do this, a part of the final series gets cut off in the middle like this.

I can avoid this issue by making the maximum 13 but that would not be appropriate since i just need to show the months of the year.

View 2 Replies

How To Get Active Directory Users Into Windows Phone 7 Series

Aug 31, 2010

how to show windows server 2003/2008 Active Directory User data in windows phone 7.

in asp.net application we can use "System.DirectoryServices" Namespace. in didn't find this name space in .net compact framework.

View 2 Replies

Web Forms :: Populate A Series Of Textboxes From An SQL Database Query?

Apr 6, 2010

I have a page of several textboxes, which I would essentially like to populate from a single query. However, to begin with, I find myself unable to even populate one textbox from one query!

I have based the following on a query previously advised to me for use with drop-down lists (hence the use of DataTable). I have adapted this as follows:

AddData.aspx:

<asp:TextBox ID="tbNewDataNum" runat="server"></asp:TextBox>

AddData.aspx.vb:

Partial Public Class AddData
Inherits System.Web.UI.Page
Dim CommonFunctions As New CommonFunctions
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

[Code]....

I would like the Page_Load event to populate the textbox with this query, so that the value is present as soon as the page is presented. Also, how would you advise populating many different textboxes in one go, with one query? Is this possible too?

View 5 Replies







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