Jump to content

JohnySK

uniGUI Subscriber
  • Posts

    7
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

JohnySK's Achievements

Newbie

Newbie (1/4)

0

Reputation

  1. Hello, Is there some way how to change UniBar3dSeries.Brush.MaxBarWidth parameters and some others during runtime? I am creating the series on runtime. Thx for feedback. rocedure TchartTOP10.CreateSeries; var k: integer; begin with uniChart.SeriesList do for k := 0 to (iSeries - 1) do begin Insert(k, TUniBar3DSeries.Create(uniChart)); TUniBar3DSeries(Items[k]).Parent := uniChart; TUniBar3DSeries(Items[k]).Title := 'Station ' + IntToStr(k); TUniBar3DSeries(Items[k]).Stacked := false; end; end;
  2. Hello, Problem looks is coming from user access rights at some folders, when you run Delphi as "Run as Administrator" problem solved.
  3. Hello, Some news? I have the same issue some of the project stop to work and crash with the same error. It start after I install version 1.90.0.1555, before I use 1.90.0.1551.
  4. Hello, It is possible to change size of the axis labels? For example here to be able to see all the labels on AxisA.
  5. Hello, Just a question it is possible to achieve that I can send null values to Unichart? To achieve that records will be empty like picture bellow? Some parameter which will allow to do this? afChartReview.uChart.SeriesList.Series[i].Add(null,''); For sure with this I got exception that it can not be converted to double. Thank you for help. With regards, Jan R.
  6. Hello, Is there some way which is working to create/delete series in Tunichart at runtime. For example I want to add to first chart 1 - xx series depend of stations for example. Series looks that it is created but never display stay blank. I try this: but nothing happen. Thx for feedback.
×
×
  • Create New...