Search found 24 matches

by pct
Thu Dec 19, 2013 6:49 pm
Forum: LightningChart Ultimate WPF
Topic: ConstantLine
Replies: 3
Views: 6968

Re: ConstantLine

Ok, thank you.

Is it possible to add an image in a constantLine?
by pct
Mon Dec 16, 2013 10:18 pm
Forum: LightningChart Ultimate WPF
Topic: ConstantLine
Replies: 3
Views: 6968

ConstantLine

In a chart ViewXY, I have a horizontal ConstantLine. Is it possible to modify the line so it would take only half of the chart?

Like this:
Image
by pct
Tue Dec 03, 2013 7:22 pm
Forum: LightningChart Ultimate WPF
Topic: Set value for BarSeriesValue3D
Replies: 17
Views: 28116

Re: Set value for BarSeriesValue3D

In the meanwhile,
I added a LineSeriesCursors to a ViewXY, I can click on the cursor and move it.
I wanted to do the same thing in a PointLineSeries3D , but I cannot click directly on PointLineSeries3D , I just click on the chart, it does not seem possible.
by pct
Tue Dec 03, 2013 1:55 pm
Forum: LightningChart Ultimate WPF
Topic: Set value for BarSeriesValue3D
Replies: 17
Views: 28116

Re: Set value for BarSeriesValue3D

It is 1 single bar.

Yes, I would like to see what you have done.

Thanks,
by pct
Mon Dec 02, 2013 10:30 pm
Forum: LightningChart Ultimate WPF
Topic: Set value for BarSeriesValue3D
Replies: 17
Views: 28116

Re: Set value for BarSeriesValue3D

I will add to the BarSerie 2 blue lines that the user can move. My question is if it is possible to have a different opacity for everything outside the blue lines Everything hashed in the picture below would be of a different opacity. Is it possible? Thanks http://s18.postimg.org/gdyfc2kqh/Bar.png
by pct
Wed Nov 20, 2013 5:36 pm
Forum: LightningChart Ultimate WPF
Topic: Set value for BarSeriesValue3D
Replies: 17
Views: 28116

Re: Set value for BarSeriesValue3D

Great, it worked. One more thing. With this line: m_chart.View3D.YAxisPrimary3D.SetRange(-100, 0); -> The bottom of the chart will be -100, top chart will be 0 m_chart.View3D.YAxisPrimary3D.SetRange(0, -100); -> The bottom of the chart will be -100, top chart will be 0 m_chart.View3D.YAxisPrimary3D....
by pct
Wed Nov 20, 2013 2:30 pm
Forum: LightningChart Ultimate WPF
Topic: Set value for BarSeriesValue3D
Replies: 17
Views: 28116

Re: Set value for BarSeriesValue3D

This line seems to cause an internal error.

Code: Select all

barMesh.Data = data;
I have about 5 threads running. After I use this line inn one of the thread, it stops all the threads. It does not go in the catch.
by pct
Tue Nov 19, 2013 10:36 pm
Forum: LightningChart Ultimate WPF
Topic: Set value for BarSeriesValue3D
Replies: 17
Views: 28116

Re: Set value for BarSeriesValue3D

It's a step in the right direction, but because the palette is a percentage, if the yMax is smaller, the area of Blue will be smaller. What I want is to have a fix palette, so between 0 and 30, it would be blue, between 30 and 60 lime, 60 and 90 yellow, 90 and 100 red. After, I would set the Y of th...
by pct
Tue Nov 19, 2013 4:38 pm
Forum: LightningChart Ultimate WPF
Topic: Set value for BarSeriesValue3D
Replies: 17
Views: 28116

Re: Set value for BarSeriesValue3D

Yes it is great. Is it possible to have a brush instead of color for the bar? If the range is from 0 to 100. At 0 it would start with a White color and be darker when it gets closer to 100. I know I could always change the color of the bar manually, if the value is between [0,10].color = xxx, etc. B...
by pct
Mon Nov 18, 2013 7:42 pm
Forum: LightningChart General Q&A
Topic: Warning with SlimDX.dll
Replies: 3
Views: 16277

Re: Warning with SlimDX.dll

I was looking today at the output window in VS and I saw this. I get this when the application is starting. The application still run fine, nothing crash, but it makes me curious. Is there a log file somewhere that would give more detail about the LightingChart exception? I assume that LightningChar...
by pct
Fri Nov 15, 2013 11:47 pm
Forum: LightningChart Ultimate WPF
Topic: Set value for BarSeriesValue3D
Replies: 17
Views: 28116

Re: Set value for BarSeriesValue3D

I tried it and it didn't work.

barSeries.BaseLevel = -140;
The chart still is from 0 to 100.


About this line: values[0] = new BarSeriesValue3D(0, 140, 0, "");
Instead of 140, shouldn't I replace it by my random Y value?

Thanks.
by pct
Thu Nov 14, 2013 10:26 pm
Forum: LightningChart Ultimate WPF
Topic: Set value for BarSeriesValue3D
Replies: 17
Views: 28116

Set value for BarSeriesValue3D

Right now, I'm getting random values between 0 and 100. This is the line of code I have to set the value.

Code: Select all

values[0] = new BarSeriesValue3D(0, 50f + 50f * Math.Sin(m_dX), 0, "");
                 m_dX += 0.025f;
How do I modify this if I get values between -140 and 0?
Thank you.
by pct
Tue Nov 05, 2013 3:37 pm
Forum: LightningChart General Q&A
Topic: Warning with SlimDX.dll
Replies: 3
Views: 16277

Warning with SlimDX.dll

When we build, we get this warning. warning MSB3270: There was a mismatch between the processor architecture of the project being built "x86" and the processor architecture of the reference "SlimDX, Version=4.0.13.43, Culture=neutral, PublicKeyToken=b1b0c32fd1ffe4f9, processorArchitec...
by pct
Fri Nov 01, 2013 7:21 pm
Forum: LightningChart Ultimate WPF
Topic: Add Annotations to ViewPolar
Replies: 12
Views: 26464

Re: Add Annotations to ViewPolar

2. Set chart.ViewPolar.Axis[0].SupplyCustomAngleString event handler. in the handler: private void AngleAsString(object sender, AxisPolarBase.AxisAngleEventArguments args) { int degrees = (int)Math.Round(180f * args.Angle / Math.PI); if(degrees == 0) args.AngleAsString = "N"; else if(degr...
by pct
Wed Oct 30, 2013 9:38 pm
Forum: LightningChart Ultimate WPF
Topic: Add Annotations to ViewPolar
Replies: 12
Views: 26464

Re: Add Annotations to ViewPolar

So, is it possible?

1 . Is there a way to know the width and height of the ViewPolar chart, I can only find the dimension of the only window.

2. Is it possible to change 0 by N, 180 by S, 90 by E, 270 by W?
by pct
Wed Oct 30, 2013 1:22 pm
Forum: LightningChart Ultimate WPF
Topic: MapQuest Street Maps
Replies: 7
Views: 19476

Re: MapQuest Street Maps

Thank, I will have to do a better use of the documentation. From what I see, you have 1 ViewXY and you can add different Series and control the visibility of each Series. What I would like to do is: ViewXY1 = contains series of point ViewXY2 = contains series of lines ViewXY3 = contains series of li...
by pct
Tue Oct 29, 2013 9:41 pm
Forum: LightningChart Ultimate WPF
Topic: MapQuest Street Maps
Replies: 7
Views: 19476

Re: MapQuest Street Maps

I see a TileLayer, PointLayer, LineLayer, MapLayer. It looks like you can add a MapItem to a PointLayer, but I can't add something to a MapItem. So, can you add a circle to a layer, or you can only add Points and Lines? An example of how to add two circles to a layer would be great. I know how to cr...
by pct
Tue Oct 29, 2013 8:21 pm
Forum: LightningChart Ultimate WPF
Topic: Add Annotations to ViewPolar
Replies: 12
Views: 26464

Re: Add Annotations to ViewPolar

Two other questions:

1 . Is there a way to know the width and height of the ViewPolar chart, I can only find the dimension of the only window.

2. Is it possible to change 0 by N, 180 by S, 90 by E, 270 by W?
by pct
Tue Oct 29, 2013 7:50 pm
Forum: LightningChart Ultimate WPF
Topic: Add Annotations to ViewPolar
Replies: 12
Views: 26464

Re: Add Annotations to ViewPolar

No, I was talking about the size of the rectangle, not the arrow, but I found how. :)

In the properties of the Annotation:
Sizing: ScreenCoordinates
Size Screen Coors: Height/Width ...they are the size of the rectangle.
by pct
Tue Oct 29, 2013 1:20 pm
Forum: LightningChart Ultimate WPF
Topic: MapQuest Street Maps
Replies: 7
Views: 19476

Re: MapQuest Street Maps

Can you create different shapes, circles, lines, points and add them on different layers?
by pct
Fri Oct 25, 2013 8:52 pm
Forum: LightningChart Ultimate WPF
Topic: Add Annotations to ViewPolar
Replies: 12
Views: 26464

Re: Add Annotations to ViewPolar

Thanks, it is very helpful to try it in Winform, much easier to see all the properties and test it.

There is still 1 property I could not find, it is the size of the annotation, it is a little but too large.
by pct
Thu Oct 24, 2013 8:23 pm
Forum: LightningChart Ultimate WPF
Topic: Add Annotations to ViewPolar
Replies: 12
Views: 26464

Re: Add Annotations to ViewPolar

Thanks, I moved my code to a different function and it worked. I have two more questions. Q1: Is there a way to control the position of the Annotation? By the 0 degree, I would like to have an annotion "North", 90 degree "South", etc. Q2: Also, I want to have the 0 value on the t...
by pct
Mon Oct 21, 2013 7:37 pm
Forum: LightningChart Ultimate WPF
Topic: Add Annotations to ViewPolar
Replies: 12
Views: 26464

Add Annotations to ViewPolar

Hi, I'm trying to add annotation in ViewPolar. I cannot add anything. -------------------------------------------------------------- AnnotationPolar annotation = new AnnotationPolar(m_chart.ViewPolar, m_chart.ViewPolar.Axes[0]); OR AnnotationPolar(); annotation.Style = AnnotationStyle.Rectangle; ann...
by pct
Mon Oct 21, 2013 1:55 pm
Forum: LightningChart Ultimate WPF
Topic: MapQuest Street Maps
Replies: 7
Views: 19476

MapQuest Street Maps

Hi, I have a directory full of .png images generated from an .osm file. Is it possible to use the MapQuest control and link it to my offline tiles directory? Something like: <map:TileLayer SourceName="OSM LocalFiles" TileSource="file:///C:/osm_tiles/{z}/{x}/{y}.png"/> Thank you. ...