Jump to content

JohnySK

uniGUI Subscriber
  • Posts

    7
  • Joined

  • Last visited

Posts posted by JohnySK

  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;

     

     

    image.png.c97dcdebe452f7c1cf0479b22c505565.png

  2. Hello,

    Problem looks is coming from user access rights at some folders, when you run Delphi as "Run as Administrator" problem solved.

    Quote

    Dashboard_AOI.exe: 00002EDC: 09:39:55 []:>--------------------------------------------------------------<
    Dashboard_AOI.exe: 00002EDC: 09:39:55 [TUniServerModule]:Server First Init.
    Dashboard_AOI.exe: 00002EDC: 09:39:55 [TUniServerModule]:Start Path = D:\_Delphi\_Delphi XE10.4\101. Dashboard_AOI\Win32\Debug\
    Dashboard_AOI.exe: 00002EDC: 09:39:55 [TUniServerModule]:Debug Mode = ON
    Dashboard_AOI.exe: 00002EDC: 09:40:15 [TUniGUIServerModule.Create]:EReadError : Error reading Image1.Picture.Data: Cannot create a file when that file already exists.
     : Addr: $0048371C
    Dashboard_AOI.exe: 00002EDC: 09:40:15 [TUniServerModule]:Server Shutdown Completed.
    Dashboard_AOI.exe: 00002EDC: 09:40:15 []:<-------------------------------------------------------------->
    Dashboard_AOI.exe: 00002EDC: 09:40:15 [Terminated]:Exit Code: 1
    Dashboard_AOI.exe: 00005030: 09:59:43 []:>--------------------------------------------------------------<
    Dashboard_AOI.exe: 00005030: 09:59:43 [TUniServerModule]:Server First Init.
    Dashboard_AOI.exe: 00005030: 09:59:43 [TUniServerModule]:Start Path = D:\_Delphi\_Delphi XE10.4\101. Dashboard_AOI\Win32\Debug\
    Dashboard_AOI.exe: 00005030: 09:59:43 [TUniServerModule]:Debug Mode = ON
    Dashboard_AOI.exe: 00005030: 09:59:43 [TUniServerModule]:Starting HTTP Server on Port: 8074...
    Dashboard_AOI.exe: 00005030: 09:59:43 [TUniServerModule]:HTTP Server Started on Port: 8074
    Dashboard_AOI.exe: 000043E4: 10:00:00 []:>--------------------------------------------------------------<

     

  3. 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.

    image.png.d6f31a1abb0ced262602143e159200c9.png

     

    With regards,

    Jan R.

  4. 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. 

    Quote

     with Chart1.SeriesList do
        for k := 0 to (nCount - 1) do
        begin
          Insert(k, TUniLineSeries.Create(Chart1));
          TUniLineSeries(Items[k]).Parent := Chart1;
          TUniLineSeries(Items[k]).Title := IntToStr(k);
        end;

     

    image.thumb.png.8247e446c31d47b1b697910061d990e7.png

×
×
  • Create New...