in
Forums
Blogs
Files
Devexpress.Com
ClientCenter
Support Center
DevExpress Channel

Browse by Tags

  • Re: Adding a webchartcontrol to a page at runtime

    Hi Sebastian, The WebChartControl doesn't have the Dock property, and hence it can't be specified. Please try the code below to create a WebChartControl at runtime (note that you need to specify your own credentials when creating an SqlDataSource object instead of "YourServerName", "YourDatabaseName...
    Posted to XtraCharts (Forum) by Alan (Developer Express) on 6/1/2007
    Filed under: XtraCharts, SeriesTemplate, runtime, webchartcontrol
  • Adding a webchartcontrol to a page at runtime

    Hi all, I've tried to add a webchartcontrol with a seriestemplate to a web page for a while now without success. I check the online documentation but even on the webchartcontrol.seriestemplate property section the example given is for the windows chartcontrol. The last line of it _chartcontrol.Dock ...
    Posted to XtraCharts (Forum) by Sebastian Duraffourd on 6/1/2007
    Filed under: SeriesTemplate, runtime, webchartcontrol
  • Re: xtrachart in runtime

    Hi, First add the DevExpress.Utils, DevExpress.XtraCharts and DevExpress.XtraCharts.UI assemblies to the References list of your project, and then use the following code or similar: Imports System Imports System.Data Imports DevExpress.XtraCharts ' ... Partial Public Class _Default Inherits System...
    Posted to XtraCharts (Forum) by Alan (Developer Express) on 8/23/2007
    Filed under: XtraCharts, runtime, webchartcontrol
  • Re: 3D pie chart - create series at runtime

    Hi Glen, I believe that you need to create your chart only at runtime. For example, the sample code at the bottom of this link demonstrates how to create a 2D-pie at runtime, and how to access this series and its view options via code. Does this help you?
    Posted to XtraCharts (Forum) by Alan (Developer Express) on 8/29/2007
    Filed under: Pie, XtraCharts, runtime
  • Re: Needed information about XtraREports

    Hello Colin, Could you please describe your task in more detail? In general, it seems that it can be easily accomplished with XtraReports. For example, you may create a report class, then create an object of this class, and call its Print or PrintDialog method. For more information, please refer to our...
    Posted to XtraReports (Forum) by Alan (Developer Express) on 8/29/2007
    Filed under: XtraReports, runtime, printing
  • Re: Export only exports the Headers! No Data!

    Hi Chris, Since this page is bound on the server-side, and the ASPxGridViewExporter generates a postback, the ASPxGridView is not bound and therefore you only see the column headers: protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { BindProjects( ); this.btnExcelExport.Visible...
    Posted to ASPxGridView and Editors Library (Forum) by Mehul Harry (Developer Express) on 8/31/2007
    Filed under: ASPxGridView, Binding, Runtime
  • Re: Interactive Charts

    Hi Brian, To accomplish this task, you should do the following: 1. Set the ChartControl.RuntimeSelection property to True . 2. Handle the ChartControl.ObjectSelected and ObjectHotTracked events as follows: private void chartControl1_ObjectSelected(object sender, DevExpress.XtraCharts.HotTrackEventArgs...
    Posted to XtraCharts (Forum) by Alan (Developer Express) on 9/26/2007
    Filed under: XtraCharts, runtime, hit-testing, hot-tracking
  • Re: How to redraw chart

    I am having the same issue. I've also tried everything Oleg did and still don't see the new data until I hover over the chart. Since I have RuntimeSelection set to True I suppose when I hover over the chart after filling the datasource internally the chart refreshes itself. But if I don't...
    Posted to XtraCharts (Forum) by Bruce Linn on 11/19/2007
    Filed under: runtime, refresh data, data changed
  • Re: Too much x -axis information, how can i use alternate labels?

    Hello, I have reopened this thread because I have a doubt, still, about this point. I want to make a chart where, the x-axis is, as you tell, a datetime value, and I have well configured it in order to obtain that labels are no overload. Even though, my application can group the information in function...
    Posted to XtraCharts (Forum) by Francesc Folguera on 12/3/2007
    Filed under: XtraCharts, date-time axis, runtime, axis
  • Please help with the simple runtime Pie chart

    HI, I've got the following code to build a pie chart on Web: WebChartControl c = new WebChartControl(); // Set Title ChartTitle title = new ChartTitle(); title.Text = "Mailings"; c.Titles.Add(title); Series serie = new Series("Mailings", ViewType.Pie3D); c.Series.Add(serie); serie...
    Posted to XtraCharts (Forum) by Gabriel van der Kruijk on 3/27/2008
    Filed under: Pie, runtime, asp.net
Page 1 of 3 (28 items) 1 2 3 Next >
Copyright © 1998-2008 Developer Express Inc.
ALL RIGHTS RESERVED