Click here to Skip to main content
15,921,697 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: apostrophe Pin
Bernhard Hiller30-Mar-14 22:54
Bernhard Hiller30-Mar-14 22:54 
AnswerRe: apostrophe Pin
Richard Deeming31-Mar-14 1:20
mveRichard Deeming31-Mar-14 1:20 
GeneralRe: apostrophe Pin
praveenmachat31-Mar-14 9:41
praveenmachat31-Mar-14 9:41 
GeneralRe: apostrophe Pin
thatraja1-Apr-14 3:19
professionalthatraja1-Apr-14 3:19 
GeneralRe: apostrophe Pin
praveenmachat1-Apr-14 9:43
praveenmachat1-Apr-14 9:43 
GeneralRe: apostrophe Pin
Schatak4-Apr-14 3:07
professionalSchatak4-Apr-14 3:07 
QuestionSample code to create multiple series and legend in asp.net chart control Pin
Kandepu Rajesh30-Mar-14 0:29
Kandepu Rajesh30-Mar-14 0:29 
AnswerRe: Sample code to create multiple series and legend in asp.net chart control Pin
Schatak4-Apr-14 3:09
professionalSchatak4-Apr-14 3:09 
XML
//design side:

<asp:chart id="yourchart" runat="server" Height="280px" Width="250px">
                            <titles>
                                <asp:Title ShadowOffset="3" Name="Title1" />
                            </titles>
                            <legends>
                                <asp:Legend Alignment="Center" Docking="Bottom" IsTextAutoFit="true" Name="Default" LegendStyle="Table" />
                            </legends>
                            <series>
                                <asp:Series Name="Default" /></series>
                            <chartareas>
                                <asp:ChartArea Name="ChartArea" BorderWidth="0" />
                            </chartareas>
                        </asp:chart>


//Coding Side
yourchart.Series[0].XValueMember = "YourColumn";
yourchart.Series[0].YValueMembers = "YourColumn";
yourchart.Series["Default"].IsValueShownAsLabel = true;
yourchart.Series["Default"].ChartType = SeriesChartType.Pie;
yourchart.Series["Default"]["PieLabelStyle"] = "Disabled";
yourchart.ChartAreas["ChartArea"].Area3DStyle.Enable3D = false;
yourchart.Legends[0].Enabled = true;
 

//Add Legend Text Column
LegendCellColumn LegendTextColumn = new LegendCellColumn();
LegendTextColumn.ColumnType = LegendCellColumnType.Text;
LegendTextColumn.Text = "#LEGENDTEXT";
yourchart.Legends["Default"].CellColumns.Add(LegendTextColumn);

QuestionExcel file was corrupted when downloaded from server Pin
Kandepu Rajesh29-Mar-14 18:14
Kandepu Rajesh29-Mar-14 18:14 
AnswerRe: Excel file was corrupted when downloaded from server Pin
Blikkies31-Mar-14 0:37
professionalBlikkies31-Mar-14 0:37 
AnswerRe: Excel file was corrupted when downloaded from server Pin
Richard Deeming31-Mar-14 1:14
mveRichard Deeming31-Mar-14 1:14 
QuestionHow to display excel content in client, and allows the client to make changes. Pin
amcpanaligan29-Mar-14 13:59
amcpanaligan29-Mar-14 13:59 
Questionhow to solve data base connection error in asp.net Pin
arulbaskar28-Mar-14 3:30
arulbaskar28-Mar-14 3:30 
AnswerRe: how to solve data base connection error in asp.net Pin
Chris Quinn28-Mar-14 3:46
Chris Quinn28-Mar-14 3:46 
AnswerRe: how to solve data base connection error in asp.net Pin
Schatak4-Apr-14 3:14
professionalSchatak4-Apr-14 3:14 
QuestionLogout from Three IFrames at a time to login page Pin
Member 911920527-Mar-14 21:48
Member 911920527-Mar-14 21:48 
AnswerRe: Logout from Three IFrames at a time to login page Pin
Schatak4-Apr-14 3:17
professionalSchatak4-Apr-14 3:17 
QuestionHow to populate gridview based on another value clicked. Pin
Garishma27-Mar-14 7:55
Garishma27-Mar-14 7:55 
AnswerRe: How to populate gridview based on another value clicked. Pin
Bikash Prakash Dash28-Mar-14 19:50
Bikash Prakash Dash28-Mar-14 19:50 
Questiongive me the steps Pin
Member 1070426327-Mar-14 6:48
Member 1070426327-Mar-14 6:48 
AnswerRe: give me the steps Pin
Sulaiman_J3-Apr-14 0:21
Sulaiman_J3-Apr-14 0:21 
GeneralRe: give me the steps Pin
Member 1070426310-Apr-14 11:34
Member 1070426310-Apr-14 11:34 
GeneralRe: give me the steps Pin
Sulaiman_J18-Apr-14 18:58
Sulaiman_J18-Apr-14 18:58 
QuestionIs it possible to use ASP.NET ProfileCommon in a windows service? Pin
devenv.exe26-Mar-14 21:15
professionaldevenv.exe26-Mar-14 21:15 
AnswerRe: Is it possible to use ASP.NET ProfileCommon in a windows service? Pin
Richard Deeming27-Mar-14 2:26
mveRichard Deeming27-Mar-14 2:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.