Browse By Tags

  • Upgrading to 21.2.46 with .Net 60 -> Problems with UltraPieChart and other charts when binding to DataTable

    Upgrading to 21.2.46 with .Net 60 -> Problems with UltraPieChart and other charts when binding to DataTable

    First can't get the Legend to show up correctly, so I just removed it for now.  

    Has anything changed in the Charts and data binding that…

  • How to get UI status of the Chart?

    i am using ColumnSeries in UltraDataChart.

    Create a Series in one function and call the SaveTo function.
    Sometimes an empty image is created.

    So I want to check the state of the chart control and call a SaveTo function.

    ex)
    void Test()
    {
    createSeries(
    chart
  • Infragistics UltraChart Y-Axis formatting “days : hours : minutes : seconds”

    I had designed  `Line Chart`, as below, 

    Here Y-axis is noting but milliseconds(turn around time), I want to display it like "days:hh:mm:ss" format. Is it possible to display Y- axis lables in this format? The data binding code is as below,

     

  • Need sample code for line chart using c#.net

    Hi,

    We using infragestics controls in our application. we want to use chart control in our application but we don't know how to bind data at run time.Please send us sample code using c#.net.

     

     

  • Exporting UltraChart to PDF in C#

    Hello,

    How can I export an ultrachart to a PDF file?
    I found this place http://blogs.infragistics.com/forums/t/28162.aspx but it didn't help me.

    I also did something like that (which I so at another place):

    Infragistics.Documents.Reports.Report…

  • Line at zero for a composite chart

    Hi I woul like to add a horizontale line at zero on the x axis on my composite chart.

     

    I tried this :

                IAdvanceAxis x = (IAdvanceAxis)e.Grid["X"];
                IAdvanceAxis y = (IAdvanceAxis)e.Grid["Y"];
                if (x != null)
                {
                    int target = 0;
                    int…

  • Yaxis scale with proper number

    Hi ,

    When I plot my graph I have on the Yaxis numbers corresponding to the point's value( like -4.5 , -2.4, -1.2 .........). What I want is to have usual number with a step of 0.5 for example (-5 to 2).

    How I can do that ?

  • Hatch under a graph

    Hi ,

    I would like to know how I can hatch a zone under a graph in a composite line ?

    Thanks

  • hide week end

    Hi ,

     

    I filling an ultrachart with a numerictimeseries. I want to know if it is possible to remove week end, on the time line ?

    Thanks

  • Hide/Unhide a plot in an Ultrachart

    Hi ,

    I would like to know how I can hide or unhide a plot in an ultrachart by using a checkbox please?

    Thanks

  • format yaxis

    Hi ,

     

    I have a small issue , my y axis is in the format : 00.00 , if gives numbers like : 05.5 , but I want to see 5.5 do you have any idea ?

    Thanks

  • How to clear an ultrachart ?

    Hi,

     

    I would like to clear my uktrachart , I know that a clear method in c# exist but I don't know how to use it .

    Thanks

  • How to copy an ultrachart style ?

    Hi Folks,

    I made an ultrachart via the ultrachart wizard. I would like to copy its style for each other ultrachart I made dynamically in c# (so without the ultrachart wizard).

    Please let me know if you have any ideas.

     

    Thanks

  • Nice ultrachart time vs data

    I need to convince my management that we can do very nice plots using infragistics, up to know this is what I have:



    In order have that here is my code :


                //Set the chart titles
                ChartPureAlpha.Text = TickerName;
       

                //Set Chart legend
                this.ChartPureAlpha…

  • Nice ultrachart time vs data

    I need to convince my management that we can do very nice plots using infragistics, up to know this is what I have:



    In order have that here is my code :


                //Set the chart titles
                ChartPureAlpha.Text = TickerName;
       

                //Set Chart legend
                this.ChartPureAlpha…

  • GantChart Item Labels

    I'm having real trouble getting labels displayed on a Gantt Chart (WinChart), I have two (or more) times on a Gantt Item each with a different label but I cannot seem to get these labels displayed on the chart (ideally in the middle of the item bar).…

  • UltraChart line chart: plot data point from database table

    This seems like a simple problem, but in all my searching I have not found a clear answer.

    I am trying to plot an x-y data series as a line chart. the series comes from a table, gwMonDataTable, which is linked to a data source set up in the c# project…