Search found 5 matches

by kihoon_sung
Wed Jul 21, 2021 5:09 am
Forum: LightningChart Ultimate WPF
Topic: Trial version recognition
Replies: 1
Views: 2126

Trial version recognition

I bought the Lightning Chart Bronze Package.

You have published your project.

However, it is recognized as a trial version and appears in the background.

Is there any solution?
by kihoon_sung
Thu Jul 08, 2021 2:41 am
Forum: LightningChart Ultimate WPF
Topic: How to change the background color and font color of the parallel coordinate chart
Replies: 3
Views: 2825

Re: How to change the background color and font color of the parallel coordinate chart

AxisY axisYWeight = new AxisY(_chart.ViewXY); axisYWeight.AxisColor = Colors.Gray; axisYWeight.LabelsColor = Colors.Gray; axisYWeight.Title.Color = Colors.Black; axisYWeight.GridStripColor = Colors.Gray; I corrected the Y-axis color, but only the grid part appears white.
by kihoon_sung
Wed Jul 07, 2021 4:37 am
Forum: LightningChart Ultimate WPF
Topic: How to change the background color and font color of the parallel coordinate chart
Replies: 3
Views: 2825

How to change the background color and font color of the parallel coordinate chart

_chart = new LightningChart(); _chart.Margin = new Thickness(0, 30, 0, 0); _chart.ColorTheme = ColorTheme.LightGray; _chart.Foreground = Brushes.Black; This is the code for applying the parallel coordinate chart color theme. When set to light gray theme, the Y-axis text color is changed to white, so...
by kihoon_sung
Tue Jul 06, 2021 12:38 am
Forum: LightningChart Ultimate WPF
Topic: Parallel Coordinate Chart I have a few questions.
Replies: 1
Views: 2037

Parallel Coordinate Chart I have a few questions.

An error occurred when registering a series of more than 16 point lines in a parallel coordinate chart in the trial version. How many point line series can be registered? In addition, legends appear as one line at the bottom of the parallel coordinate chart, so if there are many legends, all legends...
by kihoon_sung
Fri Jul 02, 2021 8:12 am
Forum: LightningChart Ultimate WPF
Topic: I don't want to change the y-axis range of a parallel chart by scrolling.
Replies: 1
Views: 2071

I don't want to change the y-axis range of a parallel chart by scrolling.

I want to prevent the Y axis from being scrolled and changing the range of the parallel chart. Is there no way? AxisY axisYWeight = new AxisY(_chart.ViewXY); axisYWeight.SetRange((double)min, (double)max); axisYWeight.Title.Text = Prop.ITEM_NM; axisYWeight.Title.VerticalAlign = YAxisTitleAlignmentVe...