Jump to content
Software FX Community

JP1970

Members
  • Posts

    8
  • Joined

  • Last visited

JP1970's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Is it possible to put text into the middle of a area chart to label the area itself? In my example I would like to label the area chart as a 'baseline' - however I want that only in the area as I have x and y labels I need to use and it doesnt apply to the second series. Thanks JP
  2. I am unable to get the x and y axis to label correctly. If I only have one series, it takes the values passed for x axis. If I have two it does not, even if the values are the same between the series. Can someone tell me how it is done in C# and provide a simple example? Thanks, JP
  3. I have been messing with the graphs for a week, but am unable to produce the ribbon chart design from your library. Can I please get an example on how to do this? thanks, JP
  4. Ok, little by little I am getting there.... However, as soon as I set my 2 series using series.itemsource and added them to the chart, it erased the labeling for the x-axis.. How do I specifically set those values in C# only? what is the C# setting I need to use in order to make those really cool looking Ribbon Line charts? Thanks,JP.
  5. That did it, Thanks... For my next question.... How do you actually create one of those ribbons? Series.StrokeThickness doesnt do it...... thanks, JP
  6. Ok, I still need the answer to the above,, but here is what I have so far... List<comparisons> dataPts = new List<comparisons>();for (int i = 0; i < appointmentTimes.Length; i++) { dataPts.Add(new comparisons(appointmentTimes, Grades)); } Chart chart1 = new Chart();chart1.ClipToBounds = true; chart1.PointCount = Grades.Length; chart1.View3D.IsEnabled= true;chart1.Gallery = Gallery.Line; chart1.Data.Series = 2; chart1.ItemsSource = dataPts; Here is where I am stuck... This will plot ONE line, but how do I enter the data for the baseline(2nd line) in C#? Cannot figure out the correct way to use series. Secondly, how do I use the transform in C# to place the correct angles for the 3d line... Third , How do you actually make the line into a ribbon - what is the call in C#. Fourth. Why doesn't my clip to bounds work? I end up filling just the corner of the canvas. I need it to be dynamic based on the canvas container so that it will work in different resolutions. Fifth, how do I change it into one of those cool Gel elements in C# THANKS IN ADVANCE JP
  7. I am unable to use this feature.... Can someone give me a C# example? I also am interested in finding out how in C# we can set the bounds for the graph based on the container? clipToBounds doesn't seem to work... Thanks, JP
  8. I could use an explicit example of setting up a new Ribbon (3d) chart in C#. We are wanting to use it on a rotating square which doesn't lend to doing it in the xaml very easily. Can someone please show me how to set up a line(ribbon) graph programatically with the data being passed in? I also need to see how to label the x-axis with date values in this manner. So as to be specific, lets say the following is the data I wish to map X values ('09/01/2007', '10/01/2007','11/15/2007','01/07/2008','05/14/2008') which I have immediately available as an array of strings. corresponding Y values is an array of integers (13,16,14,17,19) for one ribbon and Y values (15,15,16,14,14) for second ribbon. If possible show me how to populate these ribbons and do a decent 3d transform that will show them off well. For extra credit, It would be cool to see how to link this same example to a Microsoft CE db just by passing values from two fields (date and the int) directly from a table. Again, all programmatically with no code in the XAML. Any help is appreciated. Thanks, JP
×
×
  • Create New...