Search found 401 matches
- Tue Apr 13, 2021 12:49 pm
- Forum: LightningChart Ultimate WinForms
- Topic: ChartException: Render device create failed
- Replies: 1
- Views: 9
Re: ChartException: Render device create failed
It also possible that Arction’s DLLs maybe missing next to application binaries. User should check that all DLLs listed in User's Manual chapter 29.1 Referenced assemblies are there. Next, you may want to refrain from changing Chart.RenderOptions.AntiAliasLevel during initial chart construction. Som...
- Fri Apr 09, 2021 11:25 am
- Forum: LightningChart Ultimate WPF
- Topic: AxisDragNib not working correctly
- Replies: 1
- Views: 34
Re: AxisDragNib not working correctly
It is probably not Line-point itself, but SeriesEventMarker. Unless you disable Marker.AllowUserInteraction property, the markers handles mouse action in that location. At least that is behavior I see with latest version (it maybe not absolutely correct). If you see something else, please check vers...
- Thu Apr 08, 2021 6:35 am
- Forum: LightningChart Ultimate WinForms
- Topic: LightningChart logic hangs UI on virual machine
- Replies: 1
- Views: 44
Re: LightningChart logic hangs UI on virual machine
There is nothing special about virtual machine, which should prevent LightingChart running on it. Unless machine configured not to use accelerated GPU, low on memory or have no DirectX (at least 9.0c) support. Your image suggest that you may have thread problem. Please make sure that all Chart’s pro...
- Thu Mar 25, 2021 12:17 pm
- Forum: LightningChart Ultimate WPF
- Topic: PointLineSeries and ScrollMode Stepping
- Replies: 1
- Views: 61
Re: PointLineSeries and ScrollMode Stepping
All line-series (but FreeformPointLineSeries) support scrolling modes. PointLineSeries definitely do.
- Tue Mar 16, 2021 9:45 am
- Forum: LightningChart Ultimate WPF
- Topic: Add decimal place
- Replies: 7
- Views: 954
Re: Add decimal place
After chart is rendered, you can read size and position of each bar with
Code: Select all
System.Drawing.RectangleF[] aBarRect = chart.ViewXY.BarSeries[barIndex].GetBarRectangles();
- Fri Mar 12, 2021 2:11 pm
- Forum: LightningChart Ultimate WPF
- Topic: Add decimal place
- Replies: 7
- Views: 954
Re: Add decimal place
Hello, Can you show all the settings for XAxis. This include property settings and event handlers. I could image that label may disappear, if there is no space (too close to adjacent label). However, there is enough space in the image and that should happen only with CustomTick (normal tick removed ...
- Tue Feb 23, 2021 10:30 am
- Forum: LightningChart Ultimate WinForms
- Topic: HighLowSeriesPoint
- Replies: 4
- Views: 563
Re: HighLowSeriesPoint
Concept of Infinity is important in Algebra, but for numerical analysis done with computer it is dangerous path. Unless mathematical software package is design to deal with infinity, it is very likely source of the problems. Either you run get overflow error or just strange results. Keep your last p...
- Mon Feb 22, 2021 4:10 pm
- Forum: LightningChart Ultimate WinForms
- Topic: HighLowSeriesPoint
- Replies: 4
- Views: 563
Re: HighLowSeriesPoint
Infinity is slippery thing. Don't use it unless you sure it is supported and do things as you intended.
Is it just report, is it problem description? Are there particular reasons why x-point should be at infinity?
Is it just report, is it problem description? Are there particular reasons why x-point should be at infinity?
- Tue Jan 19, 2021 7:29 am
- Forum: LightningChart Ultimate WinForms
- Topic: LightingChart affects window maximization
- Replies: 1
- Views: 528
Re: LightingChart affects window maximization
Most likely it is about DPI awareness. Even if user would be using WinForms platform, when the LightningChart is created it loads some WPF libraries and because of this the DPI awareness of the application is automatically changed. It changes to the WPF default of ‘system aware’, and the DIP-PX fact...
- Thu Jan 14, 2021 10:27 am
- Forum: LightningChart Ultimate WPF
- Topic: Lightning chart application crash, when connected to app via RDP
- Replies: 3
- Views: 846
Re: Lightning chart application crash, when connected to app via RDP
Any update what ChartMessage tells? And whatever subscribing to event eliminated crashes?
- Wed Jan 13, 2021 3:04 pm
- Forum: LightningChart Ultimate How-To's
- Topic: Problem in switching dynamically the colorTheme property
- Replies: 3
- Views: 1533
Re: Problem in switching dynamically the colorTheme property
Dear Claudio, Your image and stack trace suggest that LightningChart instance at the moment of exception is Null. That is confusing part to understand, because ch could not be LightningChart and Null at the same time. If my assumptions are correct, then somewhere in the course of few lines ch was nu...
- Tue Jan 12, 2021 10:12 am
- Forum: LightningChart Ultimate WPF
- Topic: Lightning chart application crash, when connected to app via RDP
- Replies: 3
- Views: 846
Re: Lightning chart application crash, when connected to app via RDP
Hello, The problems with remote connection and LightningChart are very rare. It is probably something specific for user’s environment and/or hardware. How reproducible is the crash? What is the sequence of steps? Is application crash only it was interrupted by RDP connection? Or app could not be sta...
- Wed Dec 23, 2020 1:01 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Multi-axis magnification problem
- Replies: 1
- Views: 633
Re: Multi-axis magnification problem
You can use _Chart.ViewXY.Zoomed event handler to read zoom range change from particular segment and apply same/proportional zoom to other YAxes.
All the best.
All the best.
- Wed Dec 09, 2020 1:57 pm
- Forum: LightningChart Ultimate WinForms
- Topic: How to draw a map in 3d form?
- Replies: 1
- Views: 453
Re: How to draw a map in 3d form?
Hi, LightningChart is primarily charting ( chart is a graphical representation of data ) component not virtual environment creation tool. However, LightningChart offers various ways to use geographical maps not only in 2D, but also in 3D. Please check our Interactive Examples App to see almost 200 e...
- Wed Dec 09, 2020 1:24 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Point by point coloring in AreaSeries same as for PointLineSeries
- Replies: 1
- Views: 426
Re: Point by point coloring in AreaSeries same as for PointLineSeries
Hi, Event CustomLinePointColoringAndShaping handle is not implemented for HighLow- or Area-Series. Primarily it is intended for LINE-SERIES, such as PointLineSeries, FreeformPointLineSeries. In addition, recently it was implemented for Polar View /Series. AreaSeries is far more than just a line, the...
- Thu Dec 03, 2020 3:23 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Custom axis lable
- Replies: 1
- Views: 402
Re: Custom axis lable
You could measure size of label and compare it to available space. The size of required text’s space could be measured with _chart.MeasureText(Text, Font) [please note that Chart.MeasureText(Text, Font) output in DIP units; use DpiHelper.DipToPx() where needed]. Space between Axis minimum and maximu...
- Thu Dec 03, 2020 3:06 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Abnormal memory
- Replies: 1
- Views: 406
Re: Abnormal memory
What is memory usage in your application. You could measure with 'Task Manager' or 'Process Explorer'? In addition, check how project build settings are: Platform target, and Prefer 32-bit options. If application is 32-bit, then due to .NET limitation application is not able to use more than 2GB mem...
- Thu Dec 03, 2020 9:30 am
- Forum: LightningChart Ultimate WinForms
- Topic: The precision of the axes
- Replies: 1
- Views: 410
Re: The precision of the axes
Hi, As you noticed already, dividing axis range into equally spaced intervals/ticks not always end up in nice rounded numbers. The main question, how do you convert the double values into label (string)? If you are calling .NET Value.ToString() method with no argument (IFormatProvider / string), the...
- Tue May 05, 2020 2:53 pm
- Forum: LightningChart Ultimate WinForms
- Topic: signalreader could allow to be combinined??
- Replies: 1
- Views: 1787
Re: signalreader could allow to be combinined??
Hello,
Yes it is possible to combine several generators into one output.
Check our Demo App example "SignalGenerator -> speakers", or WinForms Demo example "High-speed data, stacked axes".
Hope this helps.
All the best
Yes it is possible to combine several generators into one output.
Check our Demo App example "SignalGenerator -> speakers", or WinForms Demo example "High-speed data, stacked axes".
Hope this helps.
All the best
- Tue Apr 14, 2020 4:07 pm
- Forum: LightningChart Ultimate WinForms
- Topic: SeriesEventMarker performance
- Replies: 1
- Views: 1987
Re: SeriesEventMarker performance
Hello, Yes, we are ware about such issue then number of SeriesEventMarkers goes above tens thousands. Actually we already have an improvement, but it is not released yet. The workaround is to use PointLineSeries instead. Individual point size is not possible for line-series, but you could create sev...
- Tue Apr 14, 2020 3:48 pm
- Forum: LightningChart Ultimate WPF
- Topic: y-axis scroll mouse drag movement failure.
- Replies: 1
- Views: 2026
Re: y-axis scroll mouse drag movement failure.
Hi, ScrollBars.Value defines position of scrollbar-thumb. It should be between ScrollBars.Minimum and ScrollBars.Maximum . Relative position is calculated by ratio of those properties. Usaully on the Chart we want ScrollBars and AxisRange being synchronized. Therefore, LightningChart uses event hand...
- Thu Mar 26, 2020 3:14 pm
- Forum: LightningChart Ultimate WPF
- Topic: ContextMenu for a SeriesPoint
- Replies: 1
- Views: 2131
Re: ContextMenu for a SeriesPoint
Hi, If you set _chart.ContextMenu = _contextMenu; then Menu will always opens on right-click on the Chart. However, you don’t need to set Chart.ContextMenu in order to show ContextMenu. In our Demo App "Annotations" example, we just have separate object, which is open on certain event & location. Ma...
- Thu Mar 26, 2020 3:04 pm
- Forum: LightningChart Ultimate WPF
- Topic: How to indicate Yaxis 1 space value.
- Replies: 1
- Views: 1770
Re: How to indicate Yaxis 1 space value.
Hi,
Zooming on or with LightningChart will lead to Axis.RangeChanged event. You could use event handler to read new Axis range (minimum and maximum).
If you would like to ask about other space, please clarify the question.
All the best.
Zooming on or with LightningChart will lead to Axis.RangeChanged event. You could use event handler to read new Axis range (minimum and maximum).
If you would like to ask about other space, please clarify the question.
All the best.
- Thu Mar 26, 2020 2:59 pm
- Forum: LightningChart Ultimate WinForms
- Topic: How to use signal generator for data acqusition
- Replies: 1
- Views: 2196
Re: How to use signal generator for data acqusition
Sorry for the delay. Where did you find those words in User's Manual? “ SignalGenerator ” as SignalTools component could not be used for data acquisition. It is for generating signal. SignalTools contains several components, which includes: SignalReader - generates real-time data stream reading sign...
- Thu Mar 26, 2020 2:51 pm
- Forum: LightningChart Ultimate WPF
- Topic: Can't set Title color after switching ColorTheme
- Replies: 3
- Views: 2450
Re: Can't set Title color after switching ColorTheme
It is possible to change properties at any time: during construction of Chart, after RangeChange or mouse click event etc. However, in this context, you need to change ColorTheme as early as possible, because it overwrites many default internal colors. This will allow to modify specific properties a...
- Fri Mar 20, 2020 11:06 am
- Forum: LightningChart Ultimate WPF
- Topic: Can't set Title color after switching ColorTheme
- Replies: 3
- Views: 2450
Re: Can't set Title color after switching ColorTheme
Hello, Setting the ColorTheme will override majority of the object colors in the created chart. It is recommended first set the ColorTheme and then modify the object colors. Color theme (call) internally changes default colors for 50+ objects (e.g. background, Title, Axis, Ticks, Legendbox etc.). Yo...
- Fri Mar 13, 2020 1:54 pm
- Forum: LightningChart Ultimate WPF
- Topic: How to make Axix range to fix?
- Replies: 1
- Views: 1836
Re: How to make Axix range to fix?
Hi,
If you don't want XAxis to change you can:
1. Set ViewXY.ZoomPanOptions.MouseWheelZooming = Vertical
2. Set ViewXY.ZoomPanOptions.AxisMouseWhellAction = None
3. Set ViewXY.ZoomPanOptions.PanDirection = Vertical
4. Set ViewXY.XAxis.MouseScrolling = False
Is this what you need?
All the best.
If you don't want XAxis to change you can:
1. Set ViewXY.ZoomPanOptions.MouseWheelZooming = Vertical
2. Set ViewXY.ZoomPanOptions.AxisMouseWhellAction = None
3. Set ViewXY.ZoomPanOptions.PanDirection = Vertical
4. Set ViewXY.XAxis.MouseScrolling = False
Is this what you need?
All the best.
- Fri Mar 13, 2020 1:26 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Grid line looks weird with dark theme.
- Replies: 1
- Views: 1897
Re: Grid line looks weird with dark theme.
Hi, Sorry for the delay. What does it mean 'weird'? If it is too many lines, then it is because you have Layered YAxes layout. You should disable visibility for some of Axis.MajorGrid.Visible . If you don't like grid color for this theme, you could change Axis.MajorGrid.Color property. Hope this hel...
- Wed Feb 26, 2020 3:56 pm
- Forum: LightningChart Ultimate WPF
- Topic: Legend Box Entries are overlapping
- Replies: 3
- Views: 2890
Re: Legend Box Entries are overlapping
Hi, Yes, I understand your needs and your point. Unfortunately LegendBox wasn't designed for that. I will include it into requested features list. Annotation could be tied to Axis value as well as to screen coordinates. For example, annot.LocationCoordinateSystem = CoordinateSystem.ScreenCoordinates...
- Mon Feb 24, 2020 1:49 pm
- Forum: LightningChart Ultimate WPF
- Topic: Legend Box Entries are overlapping
- Replies: 3
- Views: 2890
Re: Legend Box Entries are overlapping
Hello, Multiline series title in LegendBox currently is not supported. Therefore, you see this overlap as only one line is allocate per series. Annotation text is more flexible in such formatting (i.e. multiline text is supported there). Unfortunately, only one color per annotation is allowed. Serie...
- Thu Jan 30, 2020 8:46 am
- Forum: LightningChart Ultimate WPF
- Topic: Render Device Failed
- Replies: 1
- Views: 1724
Re: Render Device Failed
Hi, If it is indeed LightningChart SDK version 7.1.3.4006, then assemblies something like 3.5 year old. They are not very bad, but definitely luck some of debugging tools for the problem situation. Although, it is old version, I believe that list of required DLLs (to be delivered with your deployed ...
- Mon Dec 30, 2019 10:48 am
- Forum: LightningChart Ultimate WinForms
- Topic: Chart for showing high speed task process
- Replies: 1
- Views: 2633
Re: Chart for showing high speed task process
Hello, The requested Chat looks very similar to Gantt chart (or at least same tool could be used). We previously describe in the forum how to make a simple Gantt chart with LightningChart(R) .NET. Please see https://forum.arction.com/viewtopic.php?f=23&t=1034 You can use Annotations (as in Forum’s p...
- Mon Nov 18, 2019 2:08 pm
- Forum: LightningChart General Q&A
- Topic: To display map scale
- Replies: 5
- Views: 6009
Re: To display map scale
Sorry for the delayed answer.
Could you give visual representation of your question.
My current understanding is based on assumption that want some scale-bar on the map. Is it true? There is some problem with 'scale' on the Earth's map. See for example this Wiki article.
Could you give visual representation of your question.
My current understanding is based on assumption that want some scale-bar on the map. Is it true? There is some problem with 'scale' on the Earth's map. See for example this Wiki article.
- Fri Nov 08, 2019 9:09 am
- Forum: LightningChart Ultimate WPF
- Topic: CHart with FreeformPointLineSeries gets "frozen" under certain circumstances
- Replies: 1
- Views: 1948
Re: CHart with FreeformPointLineSeries gets "frozen" under certain circumstances
Hello, Thank you for posting question. However, several important pieces of information are missing. It is not obvious how LightningChart is connected in this context. The most effective way solving this issue is to provide test application, where issue could be replicated. If you have such applicat...
- Thu Oct 10, 2019 9:22 am
- Forum: LightningChart Ultimate WPF
- Topic: AddSeries() add more point than expected point count.
- Replies: 2
- Views: 3475
Re: AddSeries() add more point than expected point count.
Starting at least from v8.4.2.4001 issue should be fixed.
That is, points adding order and disabling/enabling PointCountLimitEnabled have no side effect (behaves as expected).
Therefore, it should be no data loss.
All the best.
That is, points adding order and disabling/enabling PointCountLimitEnabled have no side effect (behaves as expected).
Therefore, it should be no data loss.
All the best.
- Fri Jul 26, 2019 10:03 am
- Forum: LightningChart Ultimate WinForms
- Topic: Error on stoping scrolling
- Replies: 1
- Views: 2371
Re: Error on stoping scrolling
Hello, As User's Manual describes, 5.3.1 Real-time monitoring scrolling When making a real-time monitoring solution, the X axis must be scrolled to correctly show the current monitoring position, which usually is the time stamp of latest signal point. Set the latest time stamp to ScrollPosition prop...
- Fri Jul 26, 2019 6:50 am
- Forum: LightningChart Ultimate How-To's
- Topic: "Parallel Coordinates" Charts
- Replies: 14
- Views: 24135
Re: "Parallel Coordinates" Charts
Hi, This start to look like we are building proof-of-concept application. This would be part of technical support which requires active LightningChart subscription. Therefore, I would like to ask you to send subscription ID directly to Arction Support (support [at] arction com). If you don't have on...
- Wed Jul 24, 2019 9:50 am
- Forum: LightningChart Ultimate WPF
- Topic: Internal Exception
- Replies: 2
- Views: 2270
Re: Internal Exception
Hi, We may need full crash-dump or your application for testing this. However, please make sure that you don't have one of two common mistakes in your application. Two most common mistakes (made by LightningChart users) are Sharing objects and not Thread-safe chart update . Please check that you fol...
- Tue Jun 18, 2019 10:57 am
- Forum: LightningChart Ultimate WinForms
- Topic: YAxesLayout.Stacked empty space when deactivate axis
- Replies: 7
- Views: 13094
Re: YAxesLayout.Stacked empty space when deactivate axis
Few tip about Segmented layout could be found on following forum topic.
- Tue Jun 18, 2019 10:54 am
- Forum: LightningChart Ultimate How-To's
- Topic: how can I show only subscribed channels on grid LightningC?
- Replies: 1
- Views: 2761
Re: how can I show only subscribed channels on grid Lightni
Hi, If you want to hide/collapse YAxis/segment, it is better to use Segmented layout. A segment has only one property, Height. It is a relational size versus other segments. It is not defined in screen pixels, as they need to rescale with the chart's size. The Y axes can be assigned with a segment b...
- Wed Jun 05, 2019 1:02 pm
- Forum: LightningChart Ultimate WPF
- Topic: Memory Error
- Replies: 3
- Views: 3190
Re: Memory Error
The issue was fixed in the latest (v8.4.2.4001) LightningChart release.
All the best.
All the best.
- Wed Jun 05, 2019 12:39 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Space between Chart Title and Axis Title
- Replies: 6
- Views: 5510
Re: Space between Chart Title and Axis Title
The issue was fixed in the latest (v8.4.2.4001) LightningChart release.
All the best.
All the best.
- Wed Jun 05, 2019 12:21 pm
- Forum: LightningChart Ultimate WPF
- Topic: Axis Titles are rendered late when using Segmented axes
- Replies: 2
- Views: 3282
Re: Axis Titles are rendered late when using Segmented axes
The issue was fixed in latest (v8.4.2.4001) LightningChart release.
All the best.
All the best.
- Fri May 24, 2019 2:09 pm
- Forum: LightningChart Ultimate WPF
- Topic: LegendBox Programmatically Select/Deselect Series
- Replies: 3
- Views: 3190
Re: LegendBox Programmatically Select/Deselect Series
Actually Series.Visible property and LegendBox checkbox are tightly bind.
If you disable Series.Visible property it will clear corresponding item checkbox. And if you click the checkbox in Legend, this will modifies Series.Visible property.
I believe this is that you need.
Hope this helps.
If you disable Series.Visible property it will clear corresponding item checkbox. And if you click the checkbox in Legend, this will modifies Series.Visible property.
I believe this is that you need.
Hope this helps.
- Tue May 21, 2019 9:16 am
- Forum: LightningChart Ultimate WPF
- Topic: SetDeplymentKey failed
- Replies: 3
- Views: 3078
Re: SetDeplymentKey failed
Hi, To develop application with LightningChart you need a ' developer license '. That is *.ALF file you got from Arction, which is added in License Manager. The ' developer license ' allows charting developer to use and see LightningChart component without any restriction in Visual Studio environmen...
- Mon May 20, 2019 9:14 am
- Forum: LightningChart Ultimate WPF
- Topic: SetDeplymentKey failed
- Replies: 3
- Views: 3078
Re: SetDeplymentKey failed
Hi, There are two conditions when this messages is shown. The first condition for this message to appear is no ‘Developer license’ from the machine and application has valid Deployment Key. If LightningChart detects that it is used in Designer, then it drops chart rendering and shows only message as...
- Thu Apr 11, 2019 1:06 pm
- Forum: LightningChart Ultimate WPF
- Topic: 3 Questions about Maps in LightningChart WPF
- Replies: 1
- Views: 2070
Re: 3 Questions about Maps in LightningChart WPF
LightningChart has Maps feature, which covered in User’s Manual 5.25 Maps and in several examples of our Demo. The whole idea is to supplement all the functionality of ViewXY chart with geographical map as the background. Our Geographical Maps examples grouped in our Demo App under ViewXY -> Maps. Y...
- Tue Mar 26, 2019 12:29 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Block all chart interactions
- Replies: 1
- Views: 2830
Re: Block all chart interactions
Hello Mike, You could disable all interaction on the Chart with _Chart.Options.MouseInteraction = false; Most of the objects down in the tree also has MouseInteraction property: Axis, Series, Title etc. Disabling those would prevent highlighting, moving-by-mouse, raising mouse event etc. If you need...
- Thu Mar 21, 2019 2:53 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Space between Chart Title and Axis Title
- Replies: 6
- Views: 5510
Re: Space between Chart Title and Axis Title
After Chart is rendered (e.g. AfterRendering event is raised) you can use following methods, which help estimating margins: * read Active Axis area (which includes Axis line itself and labels (title is outside of this area)) var area = Axes.GetActiveAxisArea(); * read location of Axis title var rect...
- Thu Mar 21, 2019 9:57 am
- Forum: LightningChart Ultimate WinForms
- Topic: Space between Chart Title and Axis Title
- Replies: 6
- Views: 5510
Re: Space between Chart Title and Axis Title
Hello and welcome, It looks like Chart's Title auto alignment with YAxis is not working properly (e.g. as it does with XAxis). This must be an error, which we try to fix as soon as possible. If you need 'LeftCenter' or 'RightCenter' align for Chart Title, then probably you need to use manual margins...
- Thu Mar 21, 2019 8:48 am
- Forum: LightningChart Ultimate WPF
- Topic: Axis Title alignment issue
- Replies: 2
- Views: 3031
Re: Axis Title alignment issue
Hello, The Axis Title could be positioned at fixed distance from Axis. For that you should set axisY.Title.DistanceToAxis property and disable _chart.ViewXY.AxisLayout.YAxisTitleAutoPlacement . Only thing that you need is the distance's estimate. Here is my suggestion how you can do it in Axis.Range...
- Thu Mar 21, 2019 7:18 am
- Forum: LightningChart Ultimate WinForms
- Topic: Crash in WinForm Demo Application
- Replies: 2
- Views: 3418
Re: Crash in WinForm Demo Application
I believe this is already fixed in v8.4.1.4001.
- Thu Mar 07, 2019 10:26 am
- Forum: LightningChart Bug Reports
- Topic: LightningChart in HeadlessMode in NUnit
- Replies: 5
- Views: 4779
Re: LightningChart in HeadlessMode in NUnit
Thank you for all the details. Previously we didn’t use the Console Runner. We ran the test with NUnit directly in Visual Studio as instructed here . We have been able to replicate the exception with NUnit Console Runner 3.8.0. However, it seems that the exception is not related to LightningChart, b...
- Wed Mar 06, 2019 7:52 am
- Forum: LightningChart Bug Reports
- Topic: LightningChart in HeadlessMode in NUnit
- Replies: 5
- Views: 4779
Re: LightningChart in HeadlessMode in NUnit
Hi Yitzchak, I am handling both support and forum :) Of course, the support emails have higher priority as I am more aware about subscription status. We reproduced the issue with NUnit, but not with default Visual Studio's Unit test. Based on provided information about Exception (encountered unloadi...
- Tue Mar 05, 2019 1:33 pm
- Forum: LightningChart Bug Reports
- Topic: LightningChart in HeadlessMode in NUnit
- Replies: 5
- Views: 4779
Re: LightningChart in HeadlessMode in NUnit
Thank you for all the details. We believe that you are missing Chart disposal. The 'fix' is to dispose chart before unit test is finished. Thread thread = new Thread(() => { var lcu = new LightningChartUltimate(); lcu.ChartRenderOptions.HeadlessMode = true; // When this line is commented out, the is...
- Mon Mar 04, 2019 10:43 am
- Forum: LightningChart Ultimate How-To's
- Topic: Lost points using pointseries when using the mouse wheel
- Replies: 2
- Views: 3878
Re: Lost points using pointseries when using the mouse wheel
Hello, There are things which could affect line rendering after Zoom-in/out operation. The one you see in our Demo’s “Temperature graph” example is due to optimization to save memory. It is _chart.ViewXY.DropOldSeriesData property. Together with ScrollModePointsKeepLevel property (for PointLineSerie...
- Fri Mar 01, 2019 10:27 am
- Forum: LightningChart Ultimate WPF
- Topic: Axis Titles are rendered late when using Segmented axes
- Replies: 2
- Views: 3282
Re: Axis Titles are rendered late when using Segmented axes
Thank you for the report. You did everything correctly, there is some error in LightningChart, which prevent YAxes update together with all Chart rendering. We will fix it as soon as possible. The workaround is to initiate another chart rendering after EndUpdate() call: finally { this.chart.EndUpdat...
- Thu Feb 28, 2019 2:16 pm
- Forum: LightningChart Ultimate WPF
- Topic: Rotations of Camera
- Replies: 2
- Views: 4333
Re: Rotations of Camera
Hello,
LightningChart v8.4.1.4001 was just released. It contains a lot of new features, improvements and error fixes.
One of improvements that now Chart renders properly on all 3D camera angles.
Happy charting.
LightningChart v8.4.1.4001 was just released. It contains a lot of new features, improvements and error fixes.
One of improvements that now Chart renders properly on all 3D camera angles.
Happy charting.
- Thu Feb 28, 2019 12:14 pm
- Forum: LightningChart Ultimate WPF
- Topic: How to add a HorizontalScrollBar if xAxis is datatime?
- Replies: 1
- Views: 2178
Re: How to add a HorizontalScrollBar if xAxis is datatime?
Hello, The first problem is most likely due to HorizontalScrollBar object not being create or not added to Chart.HorizontalScrollBars collection. chart.HorizontalScrollBars[0].Value = _scrollPosition;(System.ArgumentOutOfRangeException) Changing Axis.ValueType should not change any fundamentals of C...
- Mon Feb 25, 2019 7:30 am
- Forum: LightningChart Ultimate WinForms
- Topic: 3D view issue(ArgumentOutOfRangeException)
- Replies: 2
- Views: 3367
Re: 3D view issue(ArgumentOutOfRangeException)
Hello,
You need to create PointLineSeries3D object and add it to collection View3D->PointLineSeries3D, because initially collection is empty.
Hope this helps.
You need to create PointLineSeries3D object and add it to collection View3D->PointLineSeries3D, because initially collection is empty.
Hope this helps.
- Thu Feb 21, 2019 7:41 am
- Forum: LightningChart Ultimate How-To's
- Topic: Render chart in Unit Tests
- Replies: 3
- Views: 3746
Re: Render chart in Unit Tests
LightningChart could be exported/printed as image (raster or vector format) only. Therefore, part of PDF rendering is not part of LightningChart - it must be some third-party library. Ok, there is option to capture to byte-array or send directly to default printer, but I believe you not using those....
- Wed Feb 20, 2019 1:41 pm
- Forum: LightningChart Ultimate How-To's
- Topic: Render chart in Unit Tests
- Replies: 3
- Views: 3746
Re: Render chart in Unit Tests
Hi, Yes it is possible to write Unit test for Headless Mode LightningChart. We have written several of those ourselves and usually they function normally. I do noticed some unexpected behavior, which could be due to Message loop functioning differently in UnitTest environment or there is some error ...
- Mon Feb 18, 2019 11:35 am
- Forum: LightningChart Ultimate WPF
- Topic: SurfaceGridSeries3D InsertRowBackAndScroll Backwards
- Replies: 1
- Views: 2178
Re: SurfaceGridSeries3D InsertRowBackAndScroll Backwards
Hello, LightningChart does not have method for inserting Row (optimal way) in front of surface data. However, I believe you could mimic backwards scrolling by using View3D.ZAxisSecondary3D . First, you should make Axis visible and Reversed property should be set opposite to primary Axis: _chart.View...
- Fri Jan 25, 2019 12:01 pm
- Forum: LightningChart Ultimate How-To's
- Topic: custom Texture for filling area
- Replies: 8
- Views: 7619
Re: custom Texture for filling area
Is it not ?
Code: Select all
Fill.Bitmap.ImageTintColor
- Fri Jan 25, 2019 7:37 am
- Forum: LightningChart Ultimate How-To's
- Topic: custom Texture for filling area
- Replies: 8
- Views: 7619
Re: custom Texture for filling area
Setting Fill.Bitmap.Layout to 'Tile' or 'Stretch' will fill all object's area. Wrong pattern (as you noticed already) or 'Center' option could make fill incomplete.
- Thu Jan 24, 2019 10:13 am
- Forum: LightningChart Ultimate WinForms
- Topic: Databreaking for XAxis FreeformPointLineSeries
- Replies: 1
- Views: 2841
Re: Databreaking for XAxis FreeformPointLineSeries
Hello Celso,
Thank you for the report.
Yes, X-values checking disregard the DataBreaking value. Looks like a bug, which we try to fix as soon as possible.
There is no good workaround, except replacing 'bad' X-values with some sensible and adding 'bad' value to Y-field.
All the best.
Thank you for the report.
Yes, X-values checking disregard the DataBreaking value. Looks like a bug, which we try to fix as soon as possible.
There is no good workaround, except replacing 'bad' X-values with some sensible and adding 'bad' value to Y-field.
All the best.
- Mon Jan 21, 2019 3:16 pm
- Forum: LightningChart Ultimate How-To's
- Topic: custom Texture for filling area
- Replies: 8
- Views: 7619
Re: custom Texture for filling area
Yes, it is possible to use bitmap fill. All the objects with Fill property support Fill.Style=Bitmap. Afterwards just add image, set layout etc. (Fill.Bitmap.Image, Fill.Bitmap.Layout etc.).
Hope this helps.
Hope this helps.
- Tue Jan 15, 2019 2:31 pm
- Forum: LightningChart Ultimate WinForms
- Topic: add SeriesEventMarker on point click
- Replies: 1
- Views: 2861
Re: add SeriesEventMarker on point click
Please check our Demo App's groups of XY examples "Cursor tracking". Those will provide with ideas how it could be engineered. In general, you can use methods to convert screen coordinates to Axis' values axis.CoordToValue() and some of LineSeries solving method, e.g. series.SolveYValueAtXValue(x) A...
- Mon Jan 14, 2019 4:19 pm
- Forum: LightningChart Ultimate WPF
- Topic: RenderDeviceCreateFailed
- Replies: 1
- Views: 2629
Re: RenderDeviceCreateFailed
Dear User, Would it be possible to send your application for the testing to Arction's Support email directly? Please include also DxDiag output. Have you tried different engines - Chart.(Chart)RenderOptions.DeviceType ? Is it the only messaged raised by Chart.ChartError event? Which platform you are...
- Fri Dec 14, 2018 10:37 am
- Forum: LightningChart Ultimate How-To's
- Topic: Status icons /button associated to axis y (WPF)
- Replies: 1
- Views: 3137
Re: Status icons /button associated to axis y (WPF)
Hello, If you need just text label and those are 4 mutually exclusive options/solutions, then you can use Series.Title property. The usage could be found in our Demo App example "Multi-channel cursor tracking". Open example and clear 'Show value next to cursor' checkbox. Then cursor information is s...
- Fri Dec 14, 2018 7:44 am
- Forum: LightningChart Ultimate WPF
- Topic: AddSeries() add more point than expected point count.
- Replies: 2
- Views: 3475
Re: AddSeries() add more point than expected point count.
Hi, Thank you for the project. You raised an interesting point. I did quick check of the code and may need to verify preliminary findings latter. But at this points it looks that you will be able to solve your problems, if enable PointCountLimitEnabled from the start . Otherwise, you are initializin...
- Fri Dec 07, 2018 3:19 pm
- Forum: LightningChart Ultimate WinForms
- Topic: NullReferenceException in LegendBoxBase when set position
- Replies: 1
- Views: 3163
Re: NullReferenceException in LegendBoxBase when set positio
LegendBox had a lot of modifications not only in version 8, but also in version 7 of LightningChart. I could not definitely say about Null References exception but we are fixing them from time to time. If you know how to reproduce, just replace assemblies and try (or send test project for us to try)...
- Wed Nov 28, 2018 3:49 pm
- Forum: LightningChart Ultimate How-To's
- Topic: MeshModel Get Triangle Based on X,Y Coordinate
- Replies: 1
- Views: 3202
Re: MeshModel Get Triangle Based on X,Y Coordinate
I believe User's Manual describe this in chapter 6.13.8 'Tracing the model with mouse' MeshModel has triangle-based tracing for mouse position. Use MouseTriangleTraced event. It will indicate the nearest triangle to camera, where the mouse hits. The event arguments have the following info: • Interse...
- Mon Nov 26, 2018 2:37 pm
- Forum: LightningChart Ultimate How-To's
- Topic: Difference beetwen graphs (WPF)
- Replies: 4
- Views: 5199
Re: Difference beetwen graphs (WPF)
If you wish to draw 'red line', then you can simply use LineCollections (is a collection of line segments; check corresponding example or Manual for illustration). If you want something more fancy, then you can use Annotation objects - check "Annotations" example (Demo App ->ViewXY -> Others) for va...
- Fri Nov 23, 2018 2:34 pm
- Forum: LightningChart Ultimate How-To's
- Topic: Difference beetwen graphs (WPF)
- Replies: 4
- Views: 5199
Re: Difference beetwen graphs (WPF)
Hello, Not sure that I grasped your needs exactly but look at Custom shaping and coloring with CustomLinePointColoringAndShaping event CustomLinePointColoringAndShapingEvent.png However, the speed of rendering will be slow if you have a lot of point or updating frequently. In that case, adding anoth...
- Mon Nov 19, 2018 1:44 pm
- Forum: LightningChart Bug Reports
- Topic: IntensityGrid color palette possible bug
- Replies: 2
- Views: 3969
Re: IntensityGrid color palette possible bug
Hello, I believe those NOT the bugs but incorrect usage. First, then you create new ValueRangePalette object, the default Steps are created (for Winforms and non-bindable WPF). Those steps are: • Steps[0]: MaxValue:25, Color: Red • Steps[1]: MaxValue:50, Color: Blue • Steps[2]: MaxValue:75, Color: L...
- Mon Nov 19, 2018 8:15 am
- Forum: LightningChart Ultimate WPF
- Topic: Integer Axis labels
- Replies: 2
- Views: 3152
Re: Integer Axis labels
Hello, Not sure how 'axis could take integer values' but I assume it is about label's string format and magnitude of division. Here is brief guide on subject. Disable auto-formatting and use set label's string in any way user likes. User can use normal formatting string here, same as you he/she use ...
- Fri Nov 16, 2018 9:18 am
- Forum: LightningChart Ultimate WinForms
- Topic: How can I get Y values using single ConstantLine
- Replies: 2
- Views: 3607
Re: How can I get Y values using single ConstantLine
Hello, You will loose precision, but you can use converters. That is, in event handler you could use screen coordinates to/from axis values converters (Axis.ValueToCoord and Axis.CoordToValue) to estimate the position of ConstantLine. For example, ConstantLine constantLine = chart.ViewXY.ConstantLin...
- Wed Nov 14, 2018 4:09 pm
- Forum: LightningChart Ultimate WPF
- Topic: How to access LightningChart control in headless mode
- Replies: 1
- Views: 2839
Re: How to access LightningChart control in headless mode
Hello,
Please check User's Manual chapter 21. Headless mode and provided demo example. User Manual also cover requirements for Threads.
Hope this helps.
Please check User's Manual chapter 21. Headless mode and provided demo example. User Manual also cover requirements for Threads.
Hope this helps.
- Mon Nov 12, 2018 2:32 pm
- Forum: LightningChart Ultimate WPF
- Topic: Create a chart on a background thread
- Replies: 2
- Views: 3296
Re: Create a chart on a background thread
In typical usage, chart should be rendered before using most of it functions. However, LightningChart also has Headless Rendering feature. That is, Headless configuration allows running LightningChart in a headless/server environment. Expected scenarios include background rendering in software appli...
- Mon Nov 12, 2018 2:22 pm
- Forum: LightningChart Ultimate WPF
- Topic: Aditional text to the label of an axis
- Replies: 1
- Views: 2772
Re: Aditional text to the label of an axis
If it is simple text (kind of text label) you can use Chart or Series EventMarkers (field Label). If you need more complex object (with Fill embedded in various shapes) use Annotations. Don't forget to disable ClipInsideGraph property for any of those objects. Hope this helps. P.S. more about text r...
- Mon Nov 05, 2018 2:44 pm
- Forum: LightningChart Ultimate WPF
- Topic: PointLineSeries Setvalues
- Replies: 1
- Views: 2625
Re: PointLineSeries Setvalues
Hi, If you building real-time monitoring example, please check our Demo App. Demo contains the group of examples dedicated to 'real-time monitoring'. Check the source code of example for optimal usage and some tips. I don't know how your acquisition system is build and how points are acquired, but y...
- Wed Oct 31, 2018 3:23 pm
- Forum: LightningChart Ultimate WPF
- Topic: UI Automation around Markers
- Replies: 3
- Views: 4021
Re: UI Automation around Markers
There is Demo App, which contains a lot of examples. Each example has the source code, which you can reuse. Start from there.
If you have valid LightningChart subscription, write your ID to Support email account and we will help you with proof of concept example.
If you have valid LightningChart subscription, write your ID to Support email account and we will help you with proof of concept example.
- Tue Oct 23, 2018 12:46 pm
- Forum: LightningChart Ultimate WPF
- Topic: Panning to the left zooms the XY chart
- Replies: 3
- Views: 4784
Re: Panning to the left zooms the XY chart
LightningChart has a lot of events, which could be used to change the behavior of the Chart. You may use XAxis.RangeChanged , YAxis.RangeChanged , ViewXY.BeforeZooming , ViewXY.Zoomed , ViewXY.BeforePanning and ViewXY.Panned events. I believe that with one or combination of event handlers you should...
- Mon Oct 22, 2018 9:52 am
- Forum: LightningChart Ultimate WPF
- Topic: UI Automation around Markers
- Replies: 3
- Views: 4021
Re: UI Automation around Markers
EventMarkers (as any other LightningChart item) have event handlers for mouse actions. Those include mouse hover (MouseOverOn, MouseOverOff), click etc. There is also PositionChange event, which is raised then Marker is moved by mouse or value(s) changed. It should not be difficult to create desired...
- Wed Oct 17, 2018 8:55 am
- Forum: LightningChart Ultimate WinForms
- Topic: SampleDataSeries and Stair/Step shape
- Replies: 4
- Views: 7212
Re: SampleDataSeries and Stair/Step shape
see my answer here.
- Wed Oct 17, 2018 8:54 am
- Forum: LightningChart Ultimate How-To's
- Topic: How have stair line
- Replies: 4
- Views: 11825
Re: How have stair line
Thank you Curt for the feature request. Unfortunately there is no easy switch to stair-like line rendering. It is not only about line rendering itself but also about all other features and optimizations connected to the line Series: for example, X-Axis scrolling optimization, value tracking with cur...
- Thu Oct 04, 2018 7:08 am
- Forum: LightningChart Ultimate WPF
- Topic: Panning to the left zooms the XY chart
- Replies: 3
- Views: 4784
Re: Panning to the left zooms the XY chart
Hi, For the start, you are using very old version. However, even in old version I don't recall such problem/bug. And definitely it is not the feature. Most likely some properties or event handler are set wrongly. It is difficult to say where you get it wrong without seeing code. Check our tutorials ...
- Tue Oct 02, 2018 10:54 am
- Forum: LightningChart Bug Reports
- Topic: Annotation/band bugs
- Replies: 6
- Views: 7572
Re: Annotation/band bugs
Issues reported here have been fixed in LightningChart v8.3.2.4001.
- Tue Oct 02, 2018 10:04 am
- Forum: LightningChart Ultimate WinForms
- Topic: Intensity grid throwing error on minimize
- Replies: 1
- Views: 3063
Re: Intensity grid throwing error on minimize
Hi there! There is very specific reason why this error is thrown. That is, if manual margins are set ( ViewXY.AxisLayout.AutoAdjustMargins = false ) and window size is just too small to have positive GraphArea, XY drawing is cancelled and error is raised. Personally I believe that ' Unspecified ' Er...
- Fri Sep 28, 2018 11:14 am
- Forum: LightningChart Ultimate WPF
- Topic: ChartManager series drag-drop from chart
- Replies: 2
- Views: 5006
Re: ChartManager series drag-drop from chart
Error was fixed in v8.3.2.4001.
- Fri Sep 28, 2018 7:01 am
- Forum: LightningChart Ultimate WPF
- Topic: How to create scrollbar for legend box in WPF
- Replies: 1
- Views: 2988
Re: How to create scrollbar for legend box in WPF
Hello,
You should disable AutoSize property and modify Height according to your needs. Otherwise LegendBox is always automatically sized.
You should disable AutoSize property and modify Height according to your needs. Otherwise LegendBox is always automatically sized.
- Wed Sep 26, 2018 1:42 pm
- Forum: LightningChart Ultimate WinForms
- Topic: IntensityMeshSeries with different amount of columns per row
- Replies: 1
- Views: 3278
Re: IntensityMeshSeries with different amount of columns per
Intensity series (Grid or Mesh) is array of M x N nodes and you should fill all the nodes. For IntensityMeshSeries X & Y values initialized as 0. Therefore, you are getting broken image as you described, if you are not setting values for remaining nodes. In your case, either yo need to arrange point...
- Wed Sep 26, 2018 7:06 am
- Forum: LightningChart Ultimate How-To's
- Topic: Contour labels
- Replies: 5
- Views: 12260
Re: Contour labels
Problem could have been encountered after zooming close enough the surface so that points surface points become too far away.
Yesterday we released v8.3.2.4001, which has Contour Labels rendering fix for low density surfaces.
Yesterday we released v8.3.2.4001, which has Contour Labels rendering fix for low density surfaces.
- Tue Sep 25, 2018 12:18 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Barchart issue with aligning the bars with the custom ticks
- Replies: 3
- Views: 4775
Re: Barchart issue with aligning the bars with the custom ti
Hi, If you want place Bars at particular value of XAxis, you should set lightningchart.ViewXY.BarViewOptions.Grouping = BarsGrouping.ByLocation; The default option ‘ ByIndex ’ and another option ‘ ByIndexFitWidth ’ will not rely XAxis. Instead Bars are drawn in the center of the chart without any bi...
- Mon Sep 24, 2018 2:44 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Barchart issue with aligning the bars with the custom ticks
- Replies: 3
- Views: 4775
Re: Barchart issue with aligning the bars with the custom ti
Hi,
What are the settings for BarViewOptions (especially Grouping)?
Could you send whole project to Arction's support account for testing?
All the best.
What are the settings for BarViewOptions (especially Grouping)?
Could you send whole project to Arction's support account for testing?
All the best.
- Mon Sep 17, 2018 7:06 am
- Forum: LightningChart Ultimate WPF
- Topic: Severe lag when moving mouse on temperature demo
- Replies: 1
- Views: 3176
Re: Severe lag when moving mouse on temperature demo
No, it is not normal that mouse movement alone is causing application to lag. I believe you did some modification in example. If yes, we would like to know what kind. If no, then it must be some problem with graphic or mouse drivers. Please send DxDiag output for inspection. Mouse movement on top of...
- Wed Sep 12, 2018 2:10 pm
- Forum: LightningChart Ultimate How-To's
- Topic: Contour labels
- Replies: 5
- Views: 12260
Re: Contour labels
Hi, Contour label will not on the same location for different zoom/pan. However, it should be still present along the contour line. Our Demo App has example "Intensity mesh, static geometry". With 'Property grid' it is possible to get similar setting as your. However, only very rarely I don't see so...
- Wed Sep 12, 2018 7:16 am
- Forum: LightningChart Ultimate WPF
- Topic: Intensity Mesh Series useage
- Replies: 1
- Views: 3335
Re: Intensity Mesh Series useage
Hi, I believe that you and many other LightningChart users have misconception about bindable edition of LightningChart. I just want to remind you that binding slowdown chart's rendering considerably (non-bindable WPF edition is fastest). If you need binding only to Chart’s properties ( not , for exa...
- Fri Aug 31, 2018 11:03 am
- Forum: LightningChart General Q&A
- Topic: Support of .NET 4.7.2
- Replies: 1
- Views: 4990
Re: Support of .NET 4.7.2
Hi, In theory should not be any issues with .NET 4.7.2 from LightningChart perspective. We not aware about any problems, although we did not test very carefully. Only slight concern about per monitors DPI awareness interpretation. Those tend to change with almost each version of .NET and Windows upd...
- Mon Aug 27, 2018 9:31 am
- Forum: LightningChart Ultimate WinForms
- Topic: Auto processing missing points.
- Replies: 1
- Views: 3699
Re: Auto processing missing points.
Hi, 'DataBreaking' property/feature should be very suitable here. Actually our Demo App contains real-time monitoring example dedicated for it, "Data breaking in series": DataBreaking.png The basic idea is that you add new points to Series then they arrive. If you consider points as missing just rep...
- Fri Aug 24, 2018 11:01 am
- Forum: LightningChart Ultimate WinForms
- Topic: Add line to linecollection
- Replies: 2
- Views: 4130
Re: Add line to linecollection
If you want to put Mark, it is probably more suitable to use SeriesEventMarkers, ChartEventMarkers or Annotations. The usage is illustrated in our Demo App example "High-speed data, stacked axes" (press/check 'Marker', 'Series marker' buttons from top menu). For LineCollection you should add/modify ...
- Fri Jul 20, 2018 7:48 am
- Forum: LightningChart Ultimate How-To's
- Topic: How to find the nearest point when using a cursor?
- Replies: 1
- Views: 5439
Re: How to find the nearest point when using a cursor?
Hi, Our Demo App contains group of 'Cursor tracking' examples, which illustrate various implementation strategies. Please go through those examples for the ideas. LineSeriesCursor is probably not the one you need, at least not its point tracking feature. Line series cursors allow visual analysis of ...
- Thu Jul 19, 2018 6:56 am
- Forum: LightningChart Ultimate WinForms
- Topic: LineSeriesCursor and AnnotationXY displaying unwanted text
- Replies: 2
- Views: 4830
Re: LineSeriesCursor and AnnotationXY displaying unwanted te
Hi Daniel,
Most likely it is Series.Title. Please disable title's visibility, i.e. Series.Title.Visible = false.
Hope this helps.
Most likely it is Series.Title. Please disable title's visibility, i.e. Series.Title.Visible = false.
Hope this helps.
- Wed Jul 18, 2018 1:03 pm
- Forum: LightningChart Ultimate How-To's
- Topic: How to set the length of axis smaller than ViewXY?
- Replies: 4
- Views: 6876
Re: How to set the length of axis smaller than ViewXY?
Hi, I suggested to use the LineCollection instead of Chart's Grid and add CustomAxisTick instead normal labels. Here is the image I created: ChartGrid as LineCollection with CustomAxisTick.jpg Here is the code o create chart: using System; using System.Collections.Generic; using System.ComponentMode...
- Tue Jul 17, 2018 9:34 am
- Forum: LightningChart Ultimate How-To's
- Topic: How to set the length of axis smaller than ViewXY?
- Replies: 4
- Views: 6876
Re: How to set the length of axis smaller than ViewXY?
Hi,
If you need empty border around graph area, then probably best approach is to use 'Line collections'. In addition, 'custom ticks' should work here better.
Please check corresponding examples from our Demo App, how to use those objects.
Hope this helps.
If you need empty border around graph area, then probably best approach is to use 'Line collections'. In addition, 'custom ticks' should work here better.
Please check corresponding examples from our Demo App, how to use those objects.
Hope this helps.
- Fri Jul 13, 2018 2:59 pm
- Forum: LightningChart Ultimate WPF
- Topic: Keep legend bound to inside chart
- Replies: 5
- Views: 9158
Re: Keep legend bound to inside chart
Could you try with 8.3.1.4001 assemblies? In addition mention platform (WPF non-bindable, semibindable, fully-bindable)? If you trying to modify Offset while dragging Legendbox, then it is slightly different thing than on MouseUp event. First, you would need to reset location and only then modify of...
- Fri Jul 13, 2018 1:05 pm
- Forum: LightningChart Ultimate WPF
- Topic: Keep legend bound to inside chart
- Replies: 5
- Views: 9158
Re: Keep legend bound to inside chart
It works for me, at least with latest assemblies and non-bindable WPF. That is, if mouse was pressed above the Chart, then Chart continues to receive mouse event, even outside of it. You could subscribe to _chart.MouseUp event and read mouse cursor's coordinates in event handler. Which version of Li...
- Fri Jul 13, 2018 9:47 am
- Forum: LightningChart Ultimate WPF
- Topic: Memory Leak
- Replies: 2
- Views: 4542
Re: Memory Leak
When LightingChart's objects are not needed anymore it's good practice to Dispose them to prevent memory leaking. As it is described in User’s Manual chapter Dispose pattern : Chart disposing When you have created the chart in code, and don't need that chart anymore, call chart.Dispose(); to free th...
- Wed Jul 11, 2018 12:04 pm
- Forum: LightningChart Ultimate WPF
- Topic: Rotations of Camera
- Replies: 2
- Views: 4333
Re: Rotations of Camera
LightningChart is using some rotation order / style. This leads to a problem that for the certain angles there is no solution. Camera especially sensitive (i.e. Euler angles are invalid) then X or Y being equal 90. We are aware about those limitations and planning to modify our internal calculations...
- Wed Jul 11, 2018 12:01 pm
- Forum: LightningChart Ultimate WPF
- Topic: Keep legend bound to inside chart
- Replies: 5
- Views: 9158
Re: Keep legend bound to inside chart
Hi, You could prevent LegendBox movement altogether with _chart.ViewXY.LegendBoxes[0].MoveByMouse = false; If you want to restrict LegendBox's position inside some area, then use Offset property and some of mouse events. For example, following code will return LegendBox back to graph-area of chart o...
- Mon Jul 09, 2018 1:51 pm
- Forum: LightningChart Ultimate WPF
- Topic: Hiding a segment from the chart.
- Replies: 1
- Views: 3093
Re: Hiding a segment from the chart.
Setting Segments.Height = 0 will do the trick.
- Mon Jul 09, 2018 1:50 pm
- Forum: LightningChart Ultimate WinForms
- Topic: YAxesLayout.Stacked chart scrollbar
- Replies: 3
- Views: 6043
Re: YAxesLayout.Stacked chart scrollbar
Sorry for the late reply. It was busy week so forum was neglected. Writing directly to Support account with SubscriptionID usually result in more speedy answer.
Setting Segments.Height = 0 will do the trick.
Setting Segments.Height = 0 will do the trick.
- Mon Jul 09, 2018 1:41 pm
- Forum: LightningChart Ultimate WPF
- Topic: Memory Leak
- Replies: 2
- Views: 4542
Re: Memory Leak
Sorry for the late reply. It was busy week so forum was neglected. Writing directly to Support account with SubscriptionID usually result in more speedy answer. Sorry, but from image is not clear (at least for me) that you have memory leak and what kind. I would need more description of LightningCha...
- Mon Jul 09, 2018 1:12 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Advice needed for showing additional data stacked linegraph
- Replies: 1
- Views: 3330
Re: Advice needed for showing additional data stacked linegr
Sorry for the late reply. It was busy week so forum was neglected. Writing directly to Support account with SubscriptionID usually result in more speedy answer. LightningChart has many ways to show the text on the chart. Besides Annotation, there are also SeriesEventMarkers, ChartEventMarkers, Serie...
- Mon Jul 09, 2018 12:16 pm
- Forum: LightningChart Ultimate How-To's
- Topic: Anyone know how to set Drag Area while Zooming?
- Replies: 2
- Views: 3972
Re: Anyone know how to set Drag Area while Zooming?
Sorry for the late reply. It was busy week so forum was neglected.
LightningChart has extensive list of properties, which modifies zooming & panning behavior. This and many more setting could be found in User's Manual chapter 'Zooming and panning'
All the best.
LightningChart has extensive list of properties, which modifies zooming & panning behavior. This and many more setting could be found in User's Manual chapter 'Zooming and panning'
All the best.
- Mon Jul 09, 2018 6:09 am
- Forum: LightningChart Ultimate WinForms
- Topic: Icons/Checkboxes Not Appearing in Legend
- Replies: 6
- Views: 8491
Re: Icons/Checkboxes Not Appearing in Legend
Using the properties grid from our Demo App ('Properties' button at the top) should be excellent alternative for the Designer. Just open any example, select property grid and modify almost any property to your liking. The result are seen instantly.
- Thu Jun 28, 2018 10:48 am
- Forum: LightningChart Ultimate WinForms
- Topic: YAxesLayout.Stacked chart scrollbar
- Replies: 3
- Views: 6043
Re: YAxesLayout.Stacked chart scrollbar
Hello, Yes, it is possible. There several improvement you can do to increase readability of the chart. First, it looks like you have very big gap between segments. It is controlled by property ViewXY.AxisLayout.SegmentsGap Second, each segment has Height property, which set relate space for it. Avai...
- Thu Jun 28, 2018 10:21 am
- Forum: LightningChart Ultimate How-To's
- Topic: How to make end labels always visible?
- Replies: 1
- Views: 3612
Re: How to make end labels always visible?
LightningChart has 0 as reference point. In many instances, if Axis range is not starting from zero the 1st label will not at minimum. In addition, automated ticks calculator not support unequal interval between ticks. However, there is easy solution - use custom ticks. For example, for XAxis: //Set...
- Tue Jun 26, 2018 2:13 pm
- Forum: LightningChart Ultimate WPF
- Topic: WPF PointLineDirection
- Replies: 3
- Views: 5158
Re: WPF PointLineDirection
Open Demo App, select example and click one of two buttons/icons at the top. Press Show source code… button to view the source code of selected example. The source code is available as C# and VB.NET (machine-converted). In Visual Studio you can open whole solution of Demo App (with examples as indiv...
- Tue Jun 26, 2018 9:16 am
- Forum: LightningChart Ultimate WPF
- Topic: WPF PointLineDirection
- Replies: 3
- Views: 5158
Re: WPF PointLineDirection
Hi, Looks like you are building real-time monitoring application. Have you looked already through our Demo App examples. There is group of examples dedicated to this type of app. Each example has the source code, which you can inspect and modify for your purpose. The short version: initially set XAx...
- Mon Jun 25, 2018 10:58 am
- Forum: LightningChart Ultimate WPF
- Topic: Scrolling with keyboard -- set focus to scrollbar?
- Replies: 1
- Views: 3531
Re: Scrolling with keyboard -- set focus to scrollbar?
Hi, At the moment LightningChart's ScrollBar focus could be set only by clicking on it. And there is no easy way mimic mouse click on WPF. I will add as feature request 'manual set of ScrollBar focus'. As workaround, you can set chart focus and subscribe to KeyDown event: private void _chart_Loaded(...
- Thu Jun 21, 2018 1:15 pm
- Forum: LightningChart Bug Reports
- Topic: DrawRectangle issue
- Replies: 7
- Views: 9765
Re: DrawRectangle issue
If you have AutoMargins (_chart.ViewXY.AxisLayout.AutoAdjustMargins = true), then it will be all area from Axis till chart edge. Otherwise, you would need to calculate Title's central point and based on angle estimate the extend of the box.
- Thu Jun 21, 2018 10:52 am
- Forum: LightningChart Ultimate WPF
- Topic: Bar series
- Replies: 2
- Views: 4066
Re: Bar series
You need to set grouping 'ByLocation' for location field to be taken into account:
Code: Select all
_chart.ViewXY.BarViewOptions.Grouping = BarsGrouping.ByLocation;
- Thu Jun 21, 2018 7:41 am
- Forum: LightningChart Ultimate WPF
- Topic: Printing/Saving chart to file
- Replies: 1
- Views: 3279
Re: Printing/Saving chart to file
Hello, You can save raster format image to any given size (i.e. there are overloaded functions with additional input arguments). Therefore, set chart to the whole range you want to be saved and specify a large width and height. Relative size of labels will be very small, unless you modify correspond...
- Tue Jun 19, 2018 1:40 pm
- Forum: LightningChart Bug Reports
- Topic: DrawRectangle issue
- Replies: 7
- Views: 9765
Re: DrawRectangle issue
Hi Roger, Thank you for all the details. There are few separate issues here. First about DrawRectangle. We did not clarify it before, but it is read only property of intermediate estimate. Note, that it gives accurate results only for Angle=0. Otherwise, reliable only Width, Height and central point...
- Mon Jun 18, 2018 2:19 pm
- Forum: LightningChart Bug Reports
- Topic: DrawRectangle issue
- Replies: 7
- Views: 9765
Re: DrawRectangle issue
Hi, Are you talking about Title's DrawRectangle? I don't believe there is any error, but you could try to proof that I am wrong. For better comparison, I would recommend drawing border around title, e.g. Title.Border.Style = Inner. Now you can do angle change - you should notice that box remains in ...
- Tue Jun 12, 2018 4:31 pm
- Forum: LightningChart Ultimate WinForms
- Topic: v8.3.1, View3D, Rectangles with transparent images
- Replies: 1
- Views: 3496
Re: v8.3.1, View3D, Rectangles with transparent images
Yes, there is Z-order issue with Rectangle3D. The best workaround is to use SurfaceGridSeries3D instead (create SurfaceGrid with Bitmap fill, and 4 nodes grid is enough).
Hope this helps.
Hope this helps.
- Tue Jun 12, 2018 4:24 pm
- Forum: LightningChart Bug Reports
- Topic: Annotation/band bugs
- Replies: 6
- Views: 7572
Re: Annotation/band bugs
Using the properties grid from our Demo App ('Properties' button at the top) should be excellent alternative for the Designer. Just open any example, select property grid and modify almost any property to your liking. The result are seen instantly.
- Mon Jun 11, 2018 1:12 pm
- Forum: LightningChart Bug Reports
- Topic: Annotation/band bugs
- Replies: 6
- Views: 7572
Re: Annotation/band bugs
Hello Roger,
Thank you for detailed report. Yes, indeed 1 and 4 are (de)serialization problems, while 2-3 some error unrelated to serialization.
Starting to search for solution.
Sorry for inconvenience.
Thank you for detailed report. Yes, indeed 1 and 4 are (de)serialization problems, while 2-3 some error unrelated to serialization.
Starting to search for solution.
Sorry for inconvenience.
- Mon Jun 11, 2018 6:22 am
- Forum: LightningChart General Q&A
- Topic: License after OS refresh
- Replies: 7
- Views: 13128
Re: License after OS refresh
Please send your subscription ID and formal request to Arction support email [support at arction dot com].
- Sun Jun 10, 2018 10:05 am
- Forum: LightningChart General Q&A
- Topic: License after OS refresh
- Replies: 7
- Views: 13128
Re: License after OS refresh
Hello, For debugging purpose, could you try to connect to this page: http://licensing.arction.com/testconnection/ If you see text ‘Connection OK’, then there are two possibilities. One is antivirus software is blocking license module running (check corresponding event log). Another possibility is co...
- Fri Jun 08, 2018 2:08 pm
- Forum: LightningChart Bug Reports
- Topic: Annotation/band bugs
- Replies: 6
- Views: 7572
Re: Annotation/band bugs
Hello Roger,
Thank you for the detailed report. Probably it is deserialization problem.
We will try to verify and fix issues as soon as possible.
The workaround is to create chart in the code (as all our Demo examples are done; check their code for guidance).
All the best.
Thank you for the detailed report. Probably it is deserialization problem.

We will try to verify and fix issues as soon as possible.
The workaround is to create chart in the code (as all our Demo examples are done; check their code for guidance).
All the best.
- Thu Jun 07, 2018 9:39 am
- Forum: LightningChart General Q&A
- Topic: License after OS refresh
- Replies: 7
- Views: 13128
Re: License after OS refresh
Hello, Yes, this is exactly that you should do, if you have developer license. That is, remove license from Arction's License Manager before making complex modification on the machine. And yes, you will required to 'install from file' the license after modifications are done. If online (de)activatio...
- Fri Jun 01, 2018 9:33 am
- Forum: LightningChart Ultimate WinForms
- Topic: Forms are resizing when opening a form wit LighteningChart
- Replies: 1
- Views: 3775
Re: Forms are resizing when opening a form wit LighteningCha
Hello, When having any mystic problem with the chart, ensure you have a working error/exception handler (subscribe to _chart.ChartError event) in your application which brings those errors visible for the user and tells the reason. In this case most likely you will get warning about DPI awareness (a...
- Thu May 31, 2018 11:16 am
- Forum: LightningChart Ultimate WinForms
- Topic: System.Drawing error - font gets disposed (?)
- Replies: 2
- Views: 3756
Re: System.Drawing error - font gets disposed (?)
Dear Ramon, This seems to me like error of parent sharing. LightningChart object model is tree-based. Every class has its parent object, and list of child objects. With aid of this tree, child object notifies parent of its changes, so that parent can respond to it respectively, and parent notifies i...
- Thu May 31, 2018 10:55 am
- Forum: LightningChart Ultimate WPF
- Topic: 20-30 Threads are created when create a chart?
- Replies: 3
- Views: 6097
Re: 20-30 Threads are created when create a chart?
Hi, This is not something for me or you to decide. The thread-pool is controlled by Framework and Windows environment. And there are smart algorithms to decide on number threads to perform certain task. On paper there is no benefit to run small task on individual thread: at some point time for creat...
- Wed May 23, 2018 10:41 am
- Forum: LightningChart Ultimate WinForms
- Topic: problem with intensity grid series
- Replies: 4
- Views: 6699
Re: problem with intensity grid series
Hi Frederick,
Issue has been fixed in version 8.3.1.1. Could you confirm the fix?
All the best.
Issue has been fixed in version 8.3.1.1. Could you confirm the fix?
All the best.
- Wed May 23, 2018 6:26 am
- Forum: LightningChart Ultimate WinForms
- Topic: problem with band
- Replies: 17
- Views: 28801
Re: problem with band
Hi Frederick,
Issue has been fixed in version 8.2.1.4. Could you confirm the fix?
All the best.
Issue has been fixed in version 8.2.1.4. Could you confirm the fix?
All the best.
- Wed May 23, 2018 6:23 am
- Forum: LightningChart Ultimate WPF
- Topic: Problems with Legend Box
- Replies: 6
- Views: 8521
Re: Problems with Legend Box
Hello Martin,
Issue has been fixed in version 8.2.1.4. Could you confirm the fix?
All the best.
Issue has been fixed in version 8.2.1.4. Could you confirm the fix?
All the best.
- Tue May 22, 2018 11:14 am
- Forum: LightningChart Ultimate WPF
- Topic: Annotation Style like polygon
- Replies: 1
- Views: 3255
Re: Annotation Style like polygon
Hi, It is not obligatory to have valid LightningChart SubscriptionID to ask question in the forum, but I need to prioritize customers valid subscription. If you would like fast and definite answer it is better to right directly to Arction's support email account (with SubscriptionID mentioned). As t...
- Fri May 18, 2018 10:00 am
- Forum: LightningChart Ultimate WPF
- Topic: How to display some lines on the real-time chart.
- Replies: 2
- Views: 3788
Re: How to display some lines on the real-time chart.
Hello, If arrows are not mandatory, you can use Bands object/series (at least for Xaxis). Please see corresponding examples in our Demo App. However, Annotation has Caliper style, which perfectly suitable here. AnnotationCaliper.jpg Here is the code from our "Annotations" example, which creates it: ...
- Fri May 18, 2018 9:17 am
- Forum: LightningChart Ultimate How-To's
- Topic: ViewXY X Axis value labels - value dependent formatting
- Replies: 4
- Views: 6805
Re: ViewXY X Axis value labels - value dependent formatting
Hello, When setting LabelsTimeFormat property, the DateTime.ToString() method's parameters string applies. You can find more about available options here . If you could not find suitable option, you can use Axis.FormatValueLabel event. For example, _chart.ViewXY.YAxes[0].FormatValueLabel += YAxis_Fo...
- Tue May 15, 2018 7:11 am
- Forum: LightningChart Ultimate WPF
- Topic: XAxes MajorGrid Line Center
- Replies: 6
- Views: 7190
Re: XAxes MajorGrid Line Center
Hi Chan,
As I wrote, I don't see the image. Therefore, this make interpretation of your question very difficult. Could you try to upload the file again, or send to Arction's support email account.
All the best.
As I wrote, I don't see the image. Therefore, this make interpretation of your question very difficult. Could you try to upload the file again, or send to Arction's support email account.
All the best.
- Mon May 14, 2018 6:25 am
- Forum: LightningChart Ultimate WPF
- Topic: XAxes MajorGrid Line Center
- Replies: 6
- Views: 7190
Re: XAxes MajorGrid Line Center
Hello, I don't see your image and description was not enough to understand your wish. Could you try again to add image and add more description. Perhaps you interested in CustomTicks , check those key words in User's Manual and Demo App. P.S. You can send your question directly to Support email acco...
- Fri May 11, 2018 9:26 am
- Forum: LightningChart Ultimate WPF
- Topic: XAxes MajorGrid Line Center
- Replies: 6
- Views: 7190
Re: XAxes MajorGrid Line Center
Hi, You could place Y Axis as percents of the graph width. For that you need to disable YAxisAutoPlacement and set Position. That is, 0 sets the axis in left edge, 50 in the middle and 100 in right edge. ViewXY.AxisLayout.YAxisAutoPlacement = YAxisAutoPlacement.Off; axisY.Position = 50; Hope this he...
- Fri May 11, 2018 9:09 am
- Forum: LightningChart Ultimate WPF
- Topic: Same code,But WPF without binding is much slower than WF
- Replies: 3
- Views: 4846
Re: Same code,But WPF without binding is much slower than WF
Enabled InvokeRenderingInUIThread property is not making Thread usage optimal, it just makes App thread-safe. As I wrote before, the usage of Invoke() method in correct places is the optimal solution.
- Wed May 09, 2018 11:53 am
- Forum: LightningChart Ultimate WPF
- Topic: Same code,But WPF without binding is much slower than WF
- Replies: 3
- Views: 4846
Re: Same code,But WPF without binding is much slower than WF
Thank you for interested in LightningChart. The project you created is not exactly clones of the original one. You actually added Thread but using it incorrectly. LightningChart updates must be done in UI thread. We don't guarantee operation otherwise. That is the way in WinForms and WPF, practicall...
- Fri May 04, 2018 2:52 pm
- Forum: LightningChart Ultimate WPF
- Topic: Order of Series in Legend Box
- Replies: 3
- Views: 4820
Re: Order of Series in Legend Box
Hello Martin, The LegendBox 'sorting' comes from the reading/rendering order. Original list is created by adding all FreeformPointLineSeries, then PointLineSeries, SampleDataSeries, LineCollections etc. Besides that each series list (e.g. PointLineSeries) is taken in the same order they have been ad...
- Thu Apr 26, 2018 2:12 pm
- Forum: LightningChart Feature Requests
- Topic: MultiColorLine property for 2D Line Series
- Replies: 3
- Views: 6413
Re: MultiColorLine property for 2D Line Series
Hello, Have you checked latest LightningChart version, 8.3.1.4001? We released the improvement for CustomLinePointColoringAndShaping event. I believe that now the coloring of FreeformPointLineSeries is very similar to MultiColorLine feature in 3D. CustomLinePointColoringAndShaping.png Please check D...
- Wed Apr 18, 2018 2:26 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Realtime chart
- Replies: 4
- Views: 7726
Re: Realtime chart
From the project send to Support, it seems like LightningChart updates must was not done in (main) UI thread. All UI stuff must be updated in UI thread, otherwise the application is prone to crashing or doing all kind funny stuff.
- Tue Apr 17, 2018 8:08 am
- Forum: LightningChart Ultimate WinForms
- Topic: Realtime chart
- Replies: 4
- Views: 7726
Re: Realtime chart
Hi, You can check the overview of all features in Action's YouTube channel: https://www.youtube.com/channel/UCQA9NVRmqAspjJj2OKzrkmw However, the easiest way to learn is to open our Demo App and check the examples. There is group of examples "Real-time monitoring", which cover the topic of your inte...
- Thu Apr 12, 2018 2:18 pm
- Forum: LightningChart Ultimate WPF
- Topic: PointLineSeries performance
- Replies: 1
- Views: 3597
Re: PointLineSeries performance
Hi, LightningChart has three types of point-line series: SampleDataSeries, PointLineSeries and FreeformPointLineSeries (see User’s Manual chapter 5.5-7). They are different in a way x-value progressing. SampleDataSeries has strict interval, therefore, storing value is more compact and rendering time...
- Tue Apr 10, 2018 12:59 pm
- Forum: LightningChart Ultimate WPF
- Topic: 20-30 Threads are created when create a chart?
- Replies: 3
- Views: 6097
Re: 20-30 Threads are created when create a chart?
Hi, The multiple threads in general is not bad thing. It allows code to distribute work across multiple processors and the .NET Framework 4 supports parallel programming. However, LightningChart does not control number of threads. The task is given for thread-pool and it is Framework keeps control o...
- Tue Apr 10, 2018 8:04 am
- Forum: LightningChart Ultimate WPF
- Topic: Do you support deploy under a trial license?
- Replies: 2
- Views: 4580
Re: Do you support deploy under a trial license?
Hello, For normal deployment process: * First, then you deploy your application, you should extract and apply ‘Deployment Key’ as instructed in User’s Manual chapters 3.3-3.4 . * Second, you should deliver Arction DLLs with your executable (see User’s Manual chapter 26.1 Referenced assemblies ): Ple...
- Wed Apr 04, 2018 11:23 am
- Forum: LightningChart Ultimate WPF
- Topic: How to detect scrollbar scrolled to the end?
- Replies: 2
- Views: 4197
Re: How to detect scrollbar scrolled to the end?
Hi, It is quite close. Your deduction is correct: whenever new points arrived the code updates HorizontalScrollBar.Maximum . If you want to keep scroll-tumb at the end, the Value field ( HorizontalScrollBar.Value ) is updated relatively to Maximum: sb.Value = sb.Maximum - sb.LargeChange +1; Therefor...
- Tue Apr 03, 2018 10:24 am
- Forum: LightningChart Ultimate How-To's
- Topic: ViewXY X Axis value labels - value dependent formatting
- Replies: 4
- Views: 6805
Re: ViewXY X Axis value labels - value dependent formatting
Hi, Sorry for the delayed response. LightningChart's labels auto formatting logic tries to do close to that you asked. That is, if XAxis.AutoFormatLables is enables and XAxis.ValueType==DateTime , when for step (between ticks) <1 sec format "mm:ss.(f)" is used; >1 & <300 sec format "HH:mm:ss" is use...
- Thu Mar 29, 2018 2:37 pm
- Forum: LightningChart Ultimate WinForms
- Topic: AreaSeries don't "fill" the negative value area
- Replies: 4
- Views: 5917
Re: AreaSeries don't "fill" the negative value area
Hi Igor,
I believe you pointing to Markers' overlap problem. We discussed way to reduce number of markers dynamically 2 month ago in emails.
All the best.
I believe you pointing to Markers' overlap problem. We discussed way to reduce number of markers dynamically 2 month ago in emails.
All the best.
- Thu Mar 29, 2018 11:20 am
- Forum: LightningChart Ultimate WinForms
- Topic: Icons/Checkboxes Not Appearing in Legend
- Replies: 6
- Views: 8491
Re: Icons/Checkboxes Not Appearing in Legend
Hello, What would be "essentially replicated the example code"? If you dropping LightningChart component from Visual Studio Toolbox it maybe significant difference. We recommend using complete Chart creation in the code, due to occasional (de)serialization problem :oops: If this is not the reason, w...
- Thu Mar 29, 2018 11:12 am
- Forum: LightningChart Ultimate WinForms
- Topic: AreaSeries don't "fill" the negative value area
- Replies: 4
- Views: 5917
Re: AreaSeries don't "fill" the negative value area
Hi,
I believe that you need to set series.BaseValue
However, fill not will be in the middle section as your arrow points. Check HighLowSeries, as it may be more suitable for your purpose.
All the best.
I believe that you need to set series.BaseValue
However, fill not will be in the middle section as your arrow points. Check HighLowSeries, as it may be more suitable for your purpose.
All the best.
- Wed Mar 28, 2018 2:11 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Place Line Cursor using a mouse click
- Replies: 1
- Views: 3609
Re: Place Line Cursor using a mouse click
Hi,
There are various cursor tracking strategies illustrated in group of examples from our DemoApp -> XY -> 'CursorTracking'.
I believe that most suitable for you is
Please not that input argument is screen coordinates (not DIP units).
All the best.
There are various cursor tracking strategies illustrated in group of examples from our DemoApp -> XY -> 'CursorTracking'.
I believe that most suitable for you is
Code: Select all
Series.SolveNearestDataPointByCoord()
All the best.
- Tue Mar 27, 2018 1:52 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Icons/Checkboxes Not Appearing in Legend
- Replies: 6
- Views: 8491
Re: Icons/Checkboxes Not Appearing in Legend
Hi, I could only think about disabled Series.ShowInLegendBox, but then you would not see series' title as well. Subscribe to _chart.ChartError event to check that there is no warning or errors reported in event handler. Subscribe to _Chart.AfterRendering event and check those mentioned properties - ...
- Tue Mar 27, 2018 1:44 pm
- Forum: LightningChart Ultimate How-To's
- Topic: Printing multiple charts with a single Print Preview Dialog
- Replies: 1
- Views: 4306
Re: Printing multiple charts with a single Print Preview Dia
Hi, PrintPreview is per chart. There is no easy way to do otherwise. I believe that best workaround is to save chart as image and combine those images into single printable page. You can create bitmap or vector image with SaveToFile(), SaveToStream(), CopyToClipboard(…), CopyToClipboardAsEmf() calls...
- Tue Mar 27, 2018 1:26 pm
- Forum: LightningChart Ultimate WinForms
- Topic: How to mult touch pinch/stretch zoom 3D chart?
- Replies: 1
- Views: 2987
Re: How to mult touch pinch/stretch zoom 3D chart?
You just put two fingers at opposite of 3D chart (left-right, top-bottom) and move fingers simultaneously toward each other (or away from each other). That should give you zooming, or distance change in View3D. It works on my touch screen monitor just fine.
All the best.
All the best.
- Mon Mar 26, 2018 9:33 am
- Forum: LightningChart Ultimate How-To's
- Topic: How to make a static grid with scrolling data (Winforms) ?
- Replies: 1
- Views: 3651
Re: How to make a static grid with scrolling data (Winforms)
Hi, Sorry for the delayed response. Sometimes question in the forum get lost. You should be able to get faster reply, if you will write directly to Arction's support address ;) :oops: Thank for the reading User's Manual and reporting error. Indeed this part of manual and relevant example have not be...
- Wed Mar 21, 2018 9:16 am
- Forum: LightningChart Ultimate WPF
- Topic: PerstentSeriesRenderingIntensityLayer ZoomToFit
- Replies: 1
- Views: 3981
Re: PerstentSeriesRenderingIntensityLayer ZoomToFit
Hello, It would be overstretch of scenario PersistentSeriesRenderLayer was design for. PersistentSeriesRenderLayer is kind of a bitmap, that allows adding rendering data incrementally in it. CPU load or memory footprint doesn’t rise, but you could not have zoom/pan interactivity as with normal Serie...
- Wed Mar 14, 2018 7:35 am
- Forum: LightningChart Ultimate WPF
- Topic: View3D use wrong color for LineStyle
- Replies: 1
- Views: 3678
Re: View3D use wrong color for LineStyle
Hello, As far as I see you don't have Subscription for LightningChart. You probably aware that "subscription expiration ends technical support, updates and warranty". If you do have subscription, please contact Arction Support. The short answer to your question - final color of 3D object is result o...
- Tue Mar 13, 2018 7:47 am
- Forum: LightningChart General Q&A
- Topic: Export regulations of Lightning Chart
- Replies: 1
- Views: 4681
Re: Export regulations of Lightning Chart
Hello,
LightningChart has to be classified as EAR99 (ECCN classification).
P.S. I see that your license subscription ended many years ago - you are missing a lot of new great features in LightningChart
Please consider renewing subscription or at least checking trial version.
All the best.
LightningChart has to be classified as EAR99 (ECCN classification).
P.S. I see that your license subscription ended many years ago - you are missing a lot of new great features in LightningChart


All the best.
- Fri Mar 09, 2018 3:38 pm
- Forum: LightningChart Ultimate WPF
- Topic: Spacing between bars
- Replies: 1
- Views: 4202
Re: Spacing between bars
Hello, Could you provide more information? It will be more helpful if you will describe all the settings you used to reproduce Bar Chart. In addition, tell us what you want to see: fixed width of the bar, fixed location etc. Test project to reproduce the issue would be nice to have. If someone start...
- Thu Mar 08, 2018 9:05 am
- Forum: LightningChart Ultimate How-To's
- Topic: The graphs don't load
- Replies: 4
- Views: 5771
Re: The graphs don't load
Hello, It is just much more easy to debug problems with latest LightningChart versions: it have multiple fallback systems, extensive list of error reporting and additional events to follow rendering process. Don't remember that was already available in version 6.5 (as we stop supporting that version...
- Wed Mar 07, 2018 8:50 am
- Forum: LightningChart Ultimate How-To's
- Topic: The graphs don't load
- Replies: 4
- Views: 5771
Re: The graphs don't load
Hi, We at least need to know the LightningChart version and platform (WinFroms, WPF, bindable etc.) you currently are using. Try to use latest one, as it has not only new features but improved reporting on errors. Which engine (_chart.(Chart)RenderOptions.DeviceType) you try to initialize, is it ‘Au...
- Tue Mar 06, 2018 3:14 pm
- Forum: LightningChart Ultimate WPF
- Topic: Fill series from unsafe memory buffers
- Replies: 1
- Views: 3420
Re: Fill series from unsafe memory buffers
Hi,
No, there is no way to avoid intermediate conversion to type supported by corresponding Series field (Points or Data).
Probably you could acquire 'source' license of LightningChart and do such project specific optimization.
All the best.
No, there is no way to avoid intermediate conversion to type supported by corresponding Series field (Points or Data).
Probably you could acquire 'source' license of LightningChart and do such project specific optimization.
All the best.
- Tue Mar 06, 2018 3:04 pm
- Forum: LightningChart Ultimate WPF
- Topic: Multiple ValueRangePalette for AreaSeries
- Replies: 1
- Views: 4242
Re: Multiple ValueRangePalette for AreaSeries
Hello, I send more extended reply from support email. Here is just short version of answer. Are you interested in coloring line or area under the curve? If you want to color line as shown in Demo App example “Line, palette coloring” , when you could have one palette (for Y value range) per Series. Y...
- Tue Mar 06, 2018 2:23 pm
- Forum: LightningChart Ultimate WinForms
- Topic: GetGraphSegmentInfo problem
- Replies: 5
- Views: 7175
Re: GetGraphSegmentInfo problem
SegmentHeightProperty = AxisLayout.Segments.Height
The 'last' means the last Segment in the list (AxisLayout.Segments).
All the best.
Code: Select all
for (int i = 0; i <= iLastSegmentIndex; i++)
{
SumOfHeightProperties += Segments[i].Height;
}
All the best.
- Tue Mar 06, 2018 9:13 am
- Forum: LightningChart Ultimate WinForms
- Topic: GetGraphSegmentInfo problem
- Replies: 5
- Views: 7175
Re: GetGraphSegmentInfo problem
Hi Fred, I believe that is wrong approach. If you remove segment or resize app's window the information about segment need to be updated. The ViewXY.GetGraphSegmentInfo() will return wrong/old info until is repainted. Therefore, I suggested to use _chart.AfterRendering event, after which all Chart's...
- Mon Mar 05, 2018 7:54 am
- Forum: LightningChart Ultimate WinForms
- Topic: GetGraphSegmentInfo problem
- Replies: 5
- Views: 7175
Re: GetGraphSegmentInfo problem
Hi, No, it is not possible to have fast rendering and on-fly update of all drawing data. That is trade of. Most of LightningChart properties are interconnected: very often you need partial or full refresh for changes propagate through all chart. Typical recommendation in this situation - use Chart.A...
- Fri Mar 02, 2018 1:48 pm
- Forum: LightningChart Ultimate WinForms
- Topic: problem with intensity grid series
- Replies: 4
- Views: 6699
Re: problem with intensity grid series
Thanks for the report.
Indeed looks like one pixel is lost at the bottom of HeatMap. We will investigate this issue as soon as possible.
If you need/want to cover this pixel, you can set Xaxis.VerticalAlign = Top with AxisThickness >1.
All the best.
Indeed looks like one pixel is lost at the bottom of HeatMap. We will investigate this issue as soon as possible.
If you need/want to cover this pixel, you can set Xaxis.VerticalAlign = Top with AxisThickness >1.
All the best.
- Fri Mar 02, 2018 8:24 am
- Forum: LightningChart Ultimate WinForms
- Topic: bug - MouseButtons.middle
- Replies: 1
- Views: 3157
Re: bug - MouseButtons.middle
Hi,
I see no problem with latest version (v8.2.3.1) in WinForms.
With default settings, the slight modified 'ExampleSegmentedLineXY' gave me both down event for all three mouse buttons.
Please provide more specific details of your app, if it is still the problem.
All the best.
I see no problem with latest version (v8.2.3.1) in WinForms.
With default settings, the slight modified 'ExampleSegmentedLineXY' gave me both down event for all three mouse buttons.
Please provide more specific details of your app, if it is still the problem.
All the best.
- Wed Feb 14, 2018 2:44 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Mouse Right To Left Zoom Action
- Replies: 2
- Views: 5977
Re: Mouse Right To Left Zoom Action
Sorry for the delayed answer. Actually ZoomToFit() method modifies Axis ranges saliently (checks chart size, estimates range based on AspectRatio and changes range for X/Y axis if found it necessary). Probably the only way is to set RightToLeftZoomAction = OFF and build your own custom MouseEvent ha...
- Fri Jan 26, 2018 3:51 pm
- Forum: LightningChart Ultimate WPF
- Topic: Redraw After Font Change
- Replies: 5
- Views: 12650
Re: Redraw After Font Change
Hi, It should be enough to include pair of BeginUpdate() and EndUpdate() method call. Chart’s EndUpdate() methods just informs chart that new frame should be rendered. I don't see any problems, at least in semi-bindable LightningChart v8.2.2.1: with each Value increase, labels and Title increased, a...
- Thu Jan 25, 2018 3:35 pm
- Forum: LightningChart Ultimate WinForms
- Topic: LCU WinForms sizing bug.
- Replies: 12
- Views: 13890
Re: LCU WinForms sizing bug.
On my 'AMD Radeon HD 6450' card, still no problem even with your project.
- Thu Jan 25, 2018 2:06 pm
- Forum: LightningChart Ultimate WPF
- Topic: Map line color
- Replies: 2
- Views: 4593
Re: Map line color
Hi,
Yes, please set
The Color structure is formed from the four ARGB components (alpha, red, green, and blue) values. To get transparency effect reduce Alpha value (max=255, min=0).
All the best.
Yes, please set
Code: Select all
_chart.ViewXY.Maps.LandOptions.LineStyle.Color
All the best.
- Wed Jan 24, 2018 10:40 am
- Forum: LightningChart Ultimate WinForms
- Topic: Reduce SeriesEventMarkers dynamically when zooming in ViewXY
- Replies: 5
- Views: 7630
Re: Reduce SeriesEventMarkers dynamically when zooming in Vi
Actual problem that DrawData is not update if marker is not visible. Therefore the work flow need to be modified. First, I would suggest subscribing to Axis’ RangeChanged and Chart’s SizeChanged events. Second, in those event handlers you want to make all Markers visible, force rendering frame (Begi...
- Wed Jan 24, 2018 7:41 am
- Forum: LightningChart Ultimate WinForms
- Topic: LCU WinForms sizing bug.
- Replies: 12
- Views: 13890
Re: LCU WinForms sizing bug.
Hi, Several customers reported AccessViolationException under certain circumstances, but have been not able to reproduce them. This exception is very broad class and not point to any specific direction. However, we fixed that we found may be the issue. Those few customers tested alpha release and co...
- Mon Jan 22, 2018 10:59 am
- Forum: LightningChart Ultimate WinForms
- Topic: Reduce SeriesEventMarkers dynamically when zooming in ViewXY
- Replies: 5
- Views: 7630
Re: Reduce SeriesEventMarkers dynamically when zooming in Vi
Hi Igor, We got you email with project attached. Please remember that each property change (including EventMarker visibility) will trigger new frame rendering. As you have multiple markers, rendering will triggered for each of them, unless you batch all update between _chart.BeginUpdate() and _chart...
- Mon Jan 22, 2018 6:50 am
- Forum: LightningChart Ultimate WPF
- Topic: Axes in the center of the graph
- Replies: 3
- Views: 7623
Re: Axes in the center of the graph
Yes, as it is shown in above example. Please set OFF corresponding chart.ViewXY.AxisLayout.?AxisAutoPlacement and set Position (Axes.Position as percents of chart width or height).
- Fri Jan 19, 2018 3:34 pm
- Forum: LightningChart Ultimate WinForms
- Topic: LCU WinForms sizing bug.
- Replies: 12
- Views: 13890
Re: LCU WinForms sizing bug.
I believe that your instructions have been clear. However, if you would share your project, when we will be absolutely certain that we are testing the same thing. You can leave project in the forum or send to Arction's support account.
Have a good weekend.
Have a good weekend.
- Fri Jan 19, 2018 11:56 am
- Forum: LightningChart Ultimate WinForms
- Topic: LCU WinForms sizing bug.
- Replies: 12
- Views: 13890
Re: LCU WinForms sizing bug.
Not able to reproduce with 'AMD Radeon HD 6450'.
Keep looking for other AMD card.
Keep looking for other AMD card.
- Thu Jan 18, 2018 8:10 am
- Forum: LightningChart Ultimate WinForms
- Topic: LCU WinForms sizing bug.
- Replies: 12
- Views: 13890
Re: LCU WinForms sizing bug.
Hello, Sorry for the delayed response - have been busy answering direct emails. The problem you described is peculiar, we have not seen it before. From your video, it looks like LCU is resized properly. The problem what clipping area (drawing stencil) remains previous size. Somehow LCU get correct s...
- Wed Jan 17, 2018 3:23 pm
- Forum: LightningChart Ultimate WPF
- Topic: Scale value repeats
- Replies: 1
- Views: 3461
Re: Scale value repeats
Hi,
You probably disable Axis.AutoFormatLabels and using Axis.LabelsNumberFormat="0.0". Please modify formatting accordingly.
All the best.
You probably disable Axis.AutoFormatLabels and using Axis.LabelsNumberFormat="0.0". Please modify formatting accordingly.
All the best.
- Tue Jan 09, 2018 8:20 am
- Forum: LightningChart Ultimate WPF
- Topic: Why right side axis Y is in chart's view when set margin
- Replies: 2
- Views: 4726
Re: Why right side axis Y is in chart's view when set margin
Hello, I guess you want YAxis labels and Title to be on the right. For that you need to set corresponding properties <lcusb:AxisY.Title> <lcusb:AxisYTitle HorizontalAlign="Right"/> </lcusb:AxisY.Title> <lcusb:AxisY.MajorDivTickStyle> <lcusb:AxisTickStyle Alignment="Far"/> </lcusb:AxisY.MajorDivTickS...
- Mon Jan 08, 2018 7:30 am
- Forum: LightningChart Ultimate WPF
- Topic: Show only the range of some items in SeriesErrorPoint
- Replies: 5
- Views: 10003
Re: Show only the range of some items in SeriesErrorPoint
To be visible in the LegendBox, create dummy series: no points just line/point style same as marker. In addition, disable visibility for the first series in legendbox (Series.ShowInLegendBox=false).
- Fri Jan 05, 2018 12:10 pm
- Forum: LightningChart Ultimate WPF
- Topic: Show only the range of some items in SeriesErrorPoint
- Replies: 5
- Views: 10003
Re: Show only the range of some items in SeriesErrorPoint
Hi, There are several solutions for your question. With limited information is difficult to say, which solution would the optimal. For example, you could just disable Series.PointsVisible and use SeriesEventMarkers instead. The benefit of SeriesEventMarker is possibility to manipulate its style indi...
- Thu Dec 28, 2017 8:23 am
- Forum: LightningChart Ultimate WPF
- Topic: How to improve performance in massive 'lines'
- Replies: 4
- Views: 10779
Re: How to improve performance in massive 'lines'
Hi, LineCollection has properties tree 'LineStyle', where you can set color, width and pattern of line. Those setting will be applied for all SegmentLine included in that collection. Even if you have one segment per LineCollection, it is still more efficient to use LineCollection than FreeformPointL...
- Thu Dec 14, 2017 3:12 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Don't draw a region in the PointLineSeries
- Replies: 1
- Views: 3547
Re: Don't draw a region in the PointLineSeries
Hi Igor, You could use either Scalebreaks or DataBreaking feature. Starting from version 8, X axes support Scale breaks. Scale breaks allow excluding specific X ranges, e.g. inactive trading hours/dates or machinery off-production hours. All the series that have been assigned to the specified X axis...
- Tue Dec 12, 2017 3:30 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Size change Exception
- Replies: 4
- Views: 5467
Re: Size change Exception
You are welcome!
- Mon Dec 11, 2017 10:34 am
- Forum: LightningChart Ultimate WinForms
- Topic: Size change Exception
- Replies: 4
- Views: 5467
Re: Size change Exception
Hello, If you using multiple thread, please note that LightningChart updates must be done in UI thread. We don't guarantee operation otherwise. That is the way in WinForms and WPF, practically for all UI controls. All UI stuff must be updated in UI thread, otherwise the application is prone to crash...
- Thu Dec 07, 2017 3:13 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Sunburst chart
- Replies: 3
- Views: 5021
Re: Sunburst chart
I believe that Polar-Sector is good starting points. You could build a lot of great things on that.
What is missing in your opinion?
Please check other Polar example for new ideas!
All the best.
What is missing in your opinion?
Please check other Polar example for new ideas!
All the best.
- Thu Dec 07, 2017 7:34 am
- Forum: LightningChart Ultimate WinForms
- Topic: Sunburst chart
- Replies: 3
- Views: 5021
Re: Sunburst chart
Hello,
The Sunburst could be built from Polar Chart by adding multiple Sectors. See our DemoApp example “Line series, sector” (PolarChart).
All the best.
The Sunburst could be built from Polar Chart by adding multiple Sectors. See our DemoApp example “Line series, sector” (PolarChart).
All the best.
- Thu Dec 07, 2017 7:22 am
- Forum: LightningChart Ultimate WinForms
- Topic: vertical line with current series y-values on mouse posiiton
- Replies: 1
- Views: 3211
Re: vertical line with current series y-values on mouse posi
Hi Igor, There are several ways to track mouse on LightningChart. It depends on type of series used and visual considerations. There is group of examples in our Demo App, under XY -> CursorTracking. The basic idea is to combine Mouse-move, Mouse-over event and Annotation or similar object. However, ...
- Thu Dec 07, 2017 7:08 am
- Forum: LightningChart Ultimate WinForms
- Topic: Reduce SeriesEventMarkers dynamically when zooming in ViewXY
- Replies: 5
- Views: 7630
Re: Reduce SeriesEventMarkers dynamically when zooming in Vi
Hi Igor, We don't have auto-placement feature for series markers. We do have for Series' titles as illustrated in our Demo App example "Minimal logarithmic axes". Also, internally contour labels use anti-overlap algorithm. You could setup your own algorithm for Markers with set of rules you find nec...
- Fri Dec 01, 2017 9:01 am
- Forum: LightningChart Ultimate WPF
- Topic: Band Disappear Error
- Replies: 8
- Views: 15279
Re: Band Disappear Error
Hello Fukasawa, Correct me if I am wrong, but your subscription already ended. While you can use the LightningChart components indefinitely, the expiration ends technical support, updates and warranty. Please renew the subscription to extend those services, or inform about valid subscription to Arct...
- Thu Nov 30, 2017 2:14 pm
- Forum: LightningChart Ultimate WPF
- Topic: Band Disappear Error
- Replies: 8
- Views: 15279
Re: Band Disappear Error
Hello, When LightingChart's objects are not needed anymore it's good practice to Dispose them to prevent memory leaking. The removal from collection (as in your code) does not automatically dispose object. I believe that failure to dispose is pointing to actual problem. That problem is parent-child ...
- Thu Nov 30, 2017 8:13 am
- Forum: LightningChart Ultimate WinForms
- Topic: Easy way to sum multiple PointLineSeries?
- Replies: 1
- Views: 2703
Re: Easy way to sum multiple PointLineSeries?
Hello, No, we don't have build in function for calculating sum/mean of series. The closest method is AxisY.GetSeriesMinMax(), which gets minimum and maximum of all series that are using this axis. However, LightningChart has some visualization alternatives, which you may consider. If number of point...
- Tue Nov 28, 2017 12:39 pm
- Forum: LightningChart Ultimate WPF
- Topic: Band Disappear Error
- Replies: 8
- Views: 15279
Re: Band Disappear Error
Hello, If you can, please send your simplified application to Arction's support account, so we could look at the issue. At the moment it looks that we are talking about different kind of 'binding'. The WPF binding is one thing. In LightningChart internally we calling 'assignment'. All series should ...
- Fri Nov 24, 2017 12:55 pm
- Forum: LightningChart Ultimate WPF
- Topic: Bind to multiple series (dynamic number of series)
- Replies: 1
- Views: 3928
Re: Bind to multiple series (dynamic number of series)
Hi,
There is nothing like a itemtemplate in LightningChart. However, if you don't know the number of required series, you can bind to SeriesCollection. You need to implement ValueConverter between data set (of dynamic size) and SeriesCollection.
Hope this helps.
There is nothing like a itemtemplate in LightningChart. However, if you don't know the number of required series, you can bind to SeriesCollection. You need to implement ValueConverter between data set (of dynamic size) and SeriesCollection.
Hope this helps.
- Fri Nov 24, 2017 9:24 am
- Forum: LightningChart Ultimate WPF
- Topic: Band Disappear Error
- Replies: 8
- Views: 15279
Re: Band Disappear Error
Hello, A band can be bound to a Y axis or X axis: the Binding property is to control that. If you bind to Xaxis (similar for Y), the AssignXAxisIndex could not be <0 and >= XAxis.Count. Otherwise you will get Error. If you remove axis, to which Band was previously assign, the AssignAxisIndex is set ...
- Thu Nov 23, 2017 11:20 am
- Forum: LightningChart Ultimate WPF
- Topic: Axis min/max y value
- Replies: 1
- Views: 3702
Re: Axis min/max y value
Hi, Which version of LightningChart you are using. The following code works just fine (in v8.2.1.1 for WinForms) for both approaches ( axisY.GetSeriesMinMax and Series.GetMinMaxFromXRange ) AxisY axisY = _chart.ViewXY.YAxes[0]; double dMin, dMax; axisY.GetSeriesMinMax(out dMin, out dMax); System.Dia...
- Fri Nov 17, 2017 9:42 am
- Forum: LightningChart Ultimate WPF
- Topic: Problems with Legend Box
- Replies: 6
- Views: 8521
Re: Problems with Legend Box
Hello Martin, The highlighting through LegendBox is special case and internally using special flag, which is not cleared other way than hovering-off Legendbox item. We will fix it in the feature releases of LightningChart. As for know, you may want to open color-selection-dialog when clicking on ser...
- Thu Nov 16, 2017 3:13 pm
- Forum: LightningChart Ultimate WPF
- Topic: YAxis Maximum value
- Replies: 1
- Views: 4334
Re: YAxis Maximum value
Hi, There is property for the gap left into top and bottom of Y axes. This is View fitting margin in pixels, which is used together with ZoomToFit(). For example, _chart.ViewXY.ZoomPanOptions.ViewFitYMarginPixels = 5; _chart.ViewXY.ZoomToFit(); Or you could simple set range in a way you like: Axis.S...
- Thu Nov 16, 2017 2:59 pm
- Forum: LightningChart Ultimate WPF
- Topic: Problems with Legend Box
- Replies: 6
- Views: 8521
Re: Problems with Legend Box
Hello Martin, Indeed it seems the problem with Highlighting then you open another windows-dialog on top of LightningChart. The temporal loss of focus prevent object (in this case Legendbox series title) from receiving HoverOff event. The Series.RemoveHighlight() call is not helpful here, because it ...
- Thu Nov 16, 2017 9:26 am
- Forum: LightningChart Ultimate WinForms
- Topic: problem with band
- Replies: 17
- Views: 28801
Re: problem with band
Hi,
Yes, we found the issue behind slow movement of Band. The IntensityGrid draw-data have been excessively refreshed. We fixed issue and FPS go up 10 folds. The fix is scheduled for next release, which currently planned in the beginning of next month.
Sorry for inconvenience.
All the best.
Yes, we found the issue behind slow movement of Band. The IntensityGrid draw-data have been excessively refreshed. We fixed issue and FPS go up 10 folds. The fix is scheduled for next release, which currently planned in the beginning of next month.
Sorry for inconvenience.
All the best.
- Wed Nov 15, 2017 1:43 pm
- Forum: LightningChart Ultimate WPF
- Topic: Legend box position
- Replies: 2
- Views: 4764
Re: Legend box position
Hi Clément, Yes, there is the way to get LegendBox on margins. Please enable AutoSpaceLegendBoxes and set desired position _chart.ViewXY.AutoSpaceLegendBoxes = true; _chart.ViewXY.LegendBoxes[0].Position = LegendBoxPositionXY.RightCenter; and Bar's example may look like this BarsAutoSpaceLegendBoxes...
- Mon Nov 13, 2017 3:13 pm
- Forum: LightningChart Ultimate WPF
- Topic: Annotations in front with multiple x-axes
- Replies: 2
- Views: 4065
Re: Annotations in front with multiple x-axes
Hi,
You could disable Annotation.RenderBehindAxis property. This way Annotation will be rendered after the axis (and after all series as well).
Hope this helps.
All the best.
You could disable Annotation.RenderBehindAxis property. This way Annotation will be rendered after the axis (and after all series as well).
Hope this helps.
All the best.
- Tue Nov 07, 2017 10:19 am
- Forum: LightningChart Ultimate WPF
- Topic: Increase the size of error bars with Chart Marker Sizes.
- Replies: 4
- Views: 8087
Re: Increase the size of error bars with Chart Marker Sizes.
Then you changing properties this way, you should inform chart that draw-data need to be recreated. Please add line Chart.ViewXY.FreeformPointLineSeries[i].InvalidateData(); at the end of your FOR loop. It is also good idea to keep everything between Chart.BeginUpdate() and Chart.EndUpdate() method ...
- Mon Nov 06, 2017 10:28 am
- Forum: LightningChart Ultimate WPF
- Topic: Increase the size of error bars with Chart Marker Sizes.
- Replies: 4
- Views: 8087
Re: Increase the size of error bars with Chart Marker Sizes.
Hello, If you want to set different length of Error-Bars, you just need to insert proper length in SeriesErrorPoint(double x, double y, double errorXMinus, double errorXPlus, double errorYMinus, double errorYPlus) method. Or change corresponding fields of PointsWithErrors. However, probably you aski...
- Thu Nov 02, 2017 3:20 pm
- Forum: LightningChart Ultimate WPF
- Topic: Disable graphborder and scalenibs
- Replies: 2
- Views: 4959
Re: Disable graphborder and scalenibs
It is not possible to set GraphBorder width - it is fixed to 1.
If you don't want to see it, make chart.View.GraphBorderColor transparent. If you want thicker, you could create rectangle Annotation (with borders), which extend over all graph area.
If you don't want to see it, make chart.View.GraphBorderColor transparent. If you want thicker, you could create rectangle Annotation (with borders), which extend over all graph area.
- Thu Nov 02, 2017 3:06 pm
- Forum: LightningChart Ultimate WPF
- Topic: Disable graphborder and scalenibs
- Replies: 2
- Views: 4959
Re: Disable graphborder and scalenibs
You can disable Axis’ ScaleNibs by setting Axis.MouseScaling = false.
- Tue Oct 31, 2017 12:17 pm
- Forum: LightningChart Ultimate WinForms
- Topic: multi sync to ConstantLine
- Replies: 5
- Views: 6352
Re: multi sync to ConstantLine
Hello,
If you want to zoom as well, when you should add/subtract same amount to Axis' Maximum/Minimum. If you maintain symmetry, the ConstantLine will at the same screen coordinate.
If you want to zoom as well, when you should add/subtract same amount to Axis' Maximum/Minimum. If you maintain symmetry, the ConstantLine will at the same screen coordinate.
- Tue Oct 31, 2017 12:08 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Line Series cursor is behind
- Replies: 2
- Views: 3361
Re: Line Series cursor is behind
LineSeriesCursors.Behind = false
Is this that you are looking?
Is this that you are looking?
- Tue Oct 31, 2017 12:00 pm
- Forum: LightningChart Ultimate WinForms
- Topic: problem with band
- Replies: 17
- Views: 28801
Re: problem with band
Thanks for all the details. Now I manage to build test application and replicate the issue. Indeed looks like a bug as any object (Band, LineSeriesCursor or EventMarker) would moves slowly above visible IntensityGrid. Disabling MouseInteraction for grid helps a little bit, but probably not significa...
- Mon Oct 30, 2017 3:21 pm
- Forum: LightningChart Ultimate WinForms
- Topic: problem with band
- Replies: 17
- Views: 28801
Re: problem with band
Did you ticked checkbox 'Pixel map' (enabled PixelRendering property) on example "Intensity grid mouse control"? Could you share the DxDiag output from your machine (as mine middle range PC show no problem)? Could you tell what is the main reason for slow IntensityGrid (is short of memory or CPU pow...
- Sat Oct 28, 2017 12:43 pm
- Forum: LightningChart Ultimate WPF
- Topic: Data Label for the Chart Marker are not aligning bottom
- Replies: 5
- Views: 6544
Re: Data Label for the Chart Marker are not aligning bottom
As I wrote, I could not see any problem with short or long error bars. With similar setting for Marker, labels have been flipping to top or bottom just fine.
Please send the sample project for testing.
Please send the sample project for testing.
- Fri Oct 27, 2017 9:12 am
- Forum: LightningChart Ultimate WinForms
- Topic: problem with band
- Replies: 17
- Views: 28801
Re: problem with band
If I understood you right you are using 10 FreeformPointLineSeries with probably 1024 points to create HeatMap (Spectrogram). Even if you using just this small amount of points, IntensityGridSeries is more efficient than rendering thousands of Point-rectangles. We very much encourage you to use Inte...
- Fri Oct 27, 2017 8:11 am
- Forum: LightningChart Ultimate WinForms
- Topic: multi sync to ConstantLine
- Replies: 5
- Views: 6352
Re: multi sync to ConstantLine
Hello Jung, Your task could be formulated as following: pan all available Axes for constant line to overlap, right? The simplest workflow is to read ConstantLine.Value, estimate NEW Minimum & Maximum of Yaxis (while keeping Y range the same) and set new Range. For example, private void UpdateYaxesRa...
- Fri Oct 27, 2017 6:19 am
- Forum: LightningChart Ultimate WPF
- Topic: Data Label for the Chart Marker are not aligning bottom
- Replies: 5
- Views: 6544
Re: Data Label for the Chart Marker are not aligning bottom
Hi, As far as I can, you are using similar Marker's settings as I did in my example. I don't see any problem and I am not aware about any related bug. You should tell what is wrong in your screenshot. Should labels be below, at around Y=0? How long error bar should be for labels not to flip? Are you...
- Thu Oct 26, 2017 9:14 am
- Forum: LightningChart Ultimate WinForms
- Topic: multi sync to ConstantLine
- Replies: 5
- Views: 6352
Re: multi sync to ConstantLine
Hello Jung,
Could you clarify your question a little bit?
If you want to assign single ConstantLine to all y axes, it is not possible?!
Are your drawing ConstantLine at same value for each y-axes, but want them be on same vertical location (on the screen)?
Please clarify.
All the best.
Could you clarify your question a little bit?
If you want to assign single ConstantLine to all y axes, it is not possible?!
Are your drawing ConstantLine at same value for each y-axes, but want them be on same vertical location (on the screen)?
Please clarify.
All the best.
- Thu Oct 26, 2017 8:39 am
- Forum: LightningChart Ultimate WPF
- Topic: Overlay (Annotation) with images and textboxes
- Replies: 3
- Views: 6296
Re: Overlay (Annotation) with images and textboxes
LightningChart was installed with Demo binaries as well as Demo source code. To find them just run DemoApp, select example you interested in and then click on one of two last icons in top ToolBar: Demo toolbar.JPG It either opens example's source code or solution in Visual Studio. Hope this helps.
- Thu Oct 26, 2017 8:30 am
- Forum: LightningChart Ultimate WPF
- Topic: Data Label for the Chart Marker are not aligning bottom
- Replies: 5
- Views: 6544
Re: Data Label for the Chart Marker are not aligning bottom
Hello, We would need the rest of application for testing. Or at least the part how you created SeriesEventMarker. For example I created Marker at the same position as Point with following settings: for (int i = 0; i < pointCount; i++) { SeriesEventMarker seriesMarker = new SeriesEventMarker(); serie...
- Thu Oct 26, 2017 7:23 am
- Forum: LightningChart Ultimate WinForms
- Topic: problem with band
- Replies: 17
- Views: 28801
Re: problem with band
Hello, Sorry but we still don't have enough details to reproduce your issue. You did not answered questions I asked in previous message. - Version number of LightningChart you are using and edition (WinForms, WPF, bindable)? - Where FreeformPointLineSeries is used? Is it Heatmap (middle segment) bui...
- Thu Oct 26, 2017 7:10 am
- Forum: LightningChart Ultimate WPF
- Topic: Overlay (Annotation) with images and textboxes
- Replies: 3
- Views: 6296
Re: Overlay (Annotation) with images and textboxes
Hello Rudolf, Yes, annotation class is probably best option to achieve complex table-image. LightningChart's Annotation is very flexible object. You can have multiple lines of text in Annotation as shown in our Demo App example "Multi-channel cursor tracking" Annotation multi-line.jpg You can have A...
- Wed Oct 25, 2017 2:01 pm
- Forum: LightningChart Ultimate WinForms
- Topic: 3D Mesh Series Always rendering from 0,0
- Replies: 4
- Views: 7029
Re: 3D Mesh Series Always rendering from 0,0
Looks like some mistake in data entering. Check our Demo examples code. If you could not find mistake, please send your app to Arction's support.
All the best.
All the best.
- Wed Oct 25, 2017 11:52 am
- Forum: LightningChart Ultimate WinForms
- Topic: 3D Mesh Series Always rendering from 0,0
- Replies: 4
- Views: 7029
Re: 3D Mesh Series Always rendering from 0,0
Hello, Could you include image of the problem as I could not understand the issue. You can even send your app for testing to Arction's support account [support at arction dot com]. Did you checked our Demo app examples. Here is the screen shot of one of them SurfaceMesh3Ds.jpg If this example is sui...
- Wed Oct 25, 2017 10:11 am
- Forum: LightningChart Ultimate WinForms
- Topic: problem with band
- Replies: 17
- Views: 28801
Re: problem with band
Hello, Thank you for the post, but there is not enough details to reproduce the issue. Could you send the sample of your application for testing to Arction's support account [support at arction dot com]. If you could not share you application, please tell that is important elements to reproduce the ...
- Mon Oct 23, 2017 9:36 am
- Forum: LightningChart Ultimate WPF
- Topic: Deploying Lightning Chart WPF applications
- Replies: 8
- Views: 23383
Re: Deploying Lightning Chart WPF applications
Hello, It must be some special situation when Arction's assemblies are not copied to the output folder. Typical situation we see is inclusion in Visual Studio solution only reference to Arction.WinForms.Charting.LightningChartUltimate.dll (WPF edition should included corresponding Arction.Wpf.*.Ligh...
- Mon Oct 23, 2017 6:20 am
- Forum: LightningChart Ultimate WPF
- Topic: Deploying Lightning Chart WPF applications
- Replies: 8
- Views: 23383
Re: Deploying Lightning Chart WPF applications
Arction DLLs could be found from the folder you installed the components, typically c:\program files (x86)\Arction\LightningChart Ultimate SDK v.8\LibNet4
- Fri Oct 20, 2017 8:49 am
- Forum: LightningChart Ultimate WPF
- Topic: Image annotations performance issue
- Replies: 6
- Views: 11106
Re: Image annotations performance issue
Each series is rendered in order of its appearance in the list (ViewXY.PointLineSeries). Therefore, if points overlap the first series will be masked, while last series will be at the top. And if you have mouse-event, they will be taken by top most.
- Thu Oct 19, 2017 2:44 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Charting Limits?
- Replies: 5
- Views: 8304
Re: Charting Limits?
Hello Heather, The amount of questions you send is not for a single forum topic, but requires whole user's manual :D I will send you replies to those question by email. If other users found those question interesting please write to Arction's support account and open new forum topic. All the best, K...
- Thu Oct 19, 2017 12:10 pm
- Forum: LightningChart Ultimate WPF
- Topic: PointLineSeries Z-Index
- Replies: 1
- Views: 3451
Re: PointLineSeries Z-Index
Hello, Each series is rendered in order of its appearance in the list (ViewXY.PointLineSeries). Therefore, first series will be most likely masked, while last series will be at the top. You most likely don't want to change order in the list. Then the workaround is to copy corresponding Series’ point...
- Wed Oct 18, 2017 11:06 am
- Forum: LightningChart Ultimate WinForms
- Topic: Charting Limits?
- Replies: 5
- Views: 8304
Re: Charting Limits?
Hello Heather, Arction don't have the official point count limit. Unfortunately, .Net Array has - that is, no single object can be larger than 2GB. It seems that in 'Zoom Bar Chart' test you are using AreaSeries. This series (same as HighLowSeries) is heavier than other series. The Draw-data contain...
- Tue Oct 17, 2017 1:12 pm
- Forum: LightningChart Ultimate WPF
- Topic: Image annotations performance issue
- Replies: 6
- Views: 11106
Re: Image annotations performance issue
Hello, Disabling Mouse interaction would help, as well as Symbol.BorderWidth=0, Symbol.GradientFill=Solid. You could also think about the design of your chart. Maybe you can make Markers invisible then they not in the range. Or use just few Annotation/Markers and change it location whenever mouse mo...
- Mon Oct 16, 2017 6:00 am
- Forum: LightningChart Ultimate WinForms
- Topic: AnnotationXy MouseOver Event Behavior Question
- Replies: 4
- Views: 5574
Re: AnnotationXy MouseOver Event Behavior Question
Hello Heather,
We did not have new release yet. LightningChart's SDK is still in the process of fixing and testing.
Meanwhile you may use workaround: subscribe to _chart.MouseMove event and check Annotation.IsMouseOver().
Sorry for inconvenience.
All the best.
We did not have new release yet. LightningChart's SDK is still in the process of fixing and testing.
Meanwhile you may use workaround: subscribe to _chart.MouseMove event and check Annotation.IsMouseOver().
Sorry for inconvenience.
All the best.
- Wed Oct 11, 2017 7:30 am
- Forum: LightningChart Ultimate WinForms
- Topic: AnnotationXy MouseOver Event Behavior Question
- Replies: 4
- Views: 5574
Re: AnnotationXy MouseOver Event Behavior Question
Annotation bug (missing mouse hover event then rendered in front of axis) is now fixed.
This fix will be included in the next release.
This fix will be included in the next release.
- Mon Oct 09, 2017 12:27 pm
- Forum: LightningChart Ultimate WinForms
- Topic: Is this a Multi-Touch bug? Please See Details...
- Replies: 2
- Views: 3778
Re: Is this a Multi-Touch bug? Please See Details...
The issue is fixed: multi-touch panning outside graph area is not allowed.
The fix will be available in the next release.
The fix will be available in the next release.
- Mon Oct 02, 2017 8:58 am
- Forum: LightningChart Ultimate WinForms
- Topic: AnnotationXy MouseOver Event Behavior Question
- Replies: 4
- Views: 5574
Re: AnnotationXy MouseOver Event Behavior Question
Hello Heather, Thank you for the detailed, step-by-step instructions to reproduce the issue. Yes, this one seems like a bug. I will fill bug report and we will try to fix it as soon as possible. Meanwhile you may use workaround: subscribe to _chart.MouseMove event and check Annotation.IsMouseOver()....
- Mon Oct 02, 2017 6:56 am
- Forum: LightningChart Ultimate WPF
- Topic: SolveYValueAtXValue for PointLineSeries
- Replies: 4
- Views: 7366
Re: SolveYValueAtXValue for PointLineSeries
Looks good to me.
Sorry for inconvenience.
Sorry for inconvenience.
- Thu Sep 28, 2017 9:42 am
- Forum: LightningChart Ultimate WPF
- Topic: SolveYValueAtXValue for PointLineSeries
- Replies: 4
- Views: 7366
Re: SolveYValueAtXValue for PointLineSeries
Hello, Thank you for those detailed observation. Indeed SolveYValueAtXValue() method not aware about DataBreaking feature, which may lead to some unexpected results. The original version of method search for the closest point on XAxis and interpolates Y-value if needed. Therefore, you see difference...
- Wed Sep 27, 2017 11:09 am
- Forum: LightningChart Ultimate WinForms
- Topic: How to solve nearest value, only searching on x, (not Y)?
- Replies: 6
- Views: 9252
- Mon Sep 25, 2017 10:32 am
- Forum: LightningChart Ultimate WinForms
- Topic: Is this a Multi-Touch bug? Please See Details...
- Replies: 2
- Views: 3778
Re: Is this a Multi-Touch bug? Please See Details...
Hello Heather,
Thank you for this report.
Yes, indeed that is the current LightningChart behavior. And you absolutely right that panning/zooming should not be started if fingers initially touched outside graph-area. We will look at the issue as soon as possible.
All the best.
Thank you for this report.
Yes, indeed that is the current LightningChart behavior. And you absolutely right that panning/zooming should not be started if fingers initially touched outside graph-area. We will look at the issue as soon as possible.
All the best.
- Mon Sep 25, 2017 9:45 am
- Forum: LightningChart Ultimate WinForms
- Topic: How to solve nearest value, only searching on x, (not Y)?
- Replies: 6
- Views: 9252
Re: How to solve nearest value, only searching on x, (not Y)
Hi Heather, A little bit extended answer. SolveNearestDataPointByCoord tries to find the points with shortest Euclidean distance. If you have other metric for shortest distance than "Euclidean distance", you could implement yourself. If your points (x coordinates) in progressive order, there are som...