Search Result

Collapse
6 results in 0.0029 seconds.
Keywords
Members
Tags
chart
  •  

  • Djiber
    started a topic Calendar or something like that

    Calendar or something like that

    What is the easiest way to accomplish this:

    Image ^^

    I've made this picture with Excel :P

    I have a Database of tasks and I would need to make a preview of them like an calendar.

    Like you see on the picture some tasks need 2-3 days to complete so I would need to draw rectangle or something that would represent that task and over it task ID/Name should be written.

    That rectangle...
    See more | Go to post

  • Kish
    started a topic Creating a reporting chart

    Creating a reporting chart

    I am trying to create a data reporting chart that will sort all my data by one of my columns and then list them.

    For example: In my sales table I have a status column. My status are closes, proposals, concepts, etc. I want my end result to look something like the .pdf I have attached.

    Is there a way to do this or do I have to export it to excel before I can create the information?

    Any help is greatly...
    See more | Go to post

  • How can I edit this code to use a variable instead of specific cell references?

    Does anyone know how I can change this line of my code to reference a variable in place of "R172"? I can't use "Range" because I want to use the values in 2 cells far apart from each other.

    .Values = "=(ARLSummary!R 4C7,ARLSummary! R172C7)"


    Code:
         LChart.Chart.SeriesCollection.Add Source:=Trange
            With LChart.Chart.SeriesCollection(2)
    ...
    See more | Go to post

  • JustCallMeRoc
    started a topic Coding a Music Chart System?
    in PHP

    Coding a Music Chart System?

    Hello,

    I just signed up on here, I found this site by googling.

    A little bit about me, I've been building websites since I'm 14, now 23. I know about graphic design as well, my knowledge on the coding side is pretty basic tho, I'm slightly towards the artistic creative side, that's probably why my design skills are more advanced. :)


    To my situation:

    I'm planning to build a website that will...
    See more | Go to post

  • gpalade
    started a topic chart colors & customisation

    chart colors & customisation

    Hy,
    i'm using c# to create a powerPoint presentation that contains charts. I've added the chart(s) using Graph.Chart, it looks like this:
    Code:
     Graph.Chart objChart = (Graph.Chart)objSlide.Shapes.AddOLEObject(xx, yy, 250, 180,
                        "MSGraph.Chart.8", "", MsoTriState.msoFalse, "", 0, "", MsoTriState.msoFalse).OLEFormat.Object;
                objChart.ChartType = Graph.XlChartType.xl3DColumnClustered;
    ...
    See more | Go to post
    Last edited by PRR; Apr 13 '09, 05:03 AM. Reason: Please post code in [code] [/code] tags.

  • cubekid
    started a topic OWC 11: Is it possible to have combination chart?

    OWC 11: Is it possible to have combination chart?

    I am using OWC 11 in my new web application for displaying charts.
    Is it possible in OWC 11 to combine and display a column and a line graph (Looking like they overlap each other)?
    I tried it using this code but it doesn' t work.

    Code:
    int width = 400;
    int height = 300;
    
    Bitmap bmpChart = new Bitmap(width, height, PixelFormat.Format16bppRgb555);
    			
    OWC11.ChartSpace chSpace
    ...
    See more | Go to post
    Last edited by cubekid; Feb 24 '09, 06:10 AM. Reason: Additional information
Working...