Jump to content

pro_imaj

uniGUI Subscriber
  • Posts

    929
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by pro_imaj

  1. Hi, The attached video is \FMSoft\Framework\uniGUI\Demos\Desktop\Tablet Application example. If you pay attention to the 2nd and 9th seconds of the video, it acts as if there is a Screen mask on the screen, but there is no screen mas, sometimes it does this and sometimes it does not, the image that comes in the form of a screen mask is annoying. Is there a way to prevent this? 20220803_121110.mp4
  2. Thanks for your suggestion, This solution creates problems for some template options, they are often grayed out and make text unreadable.
  3. I wonder if there is a comment about this, if the colors will not change automatically, I will not use this component.
  4. The problem occurs when I do it through the example here. \FMSoft\Framework\uniGUI\Demos\Desktop\Tablet Application
  5. Hi, When I add the UniTreeMenu1 object to the form, although Color := clWindow, when I select a theme, its color does not change according to the theme. How can I make the color change according to the theme? Like all other objects, I want the color to change according to the theme when the theme is selected. Thank you.
  6. Hi @Hayri ASLAN, I can't see what values Params can take. I want to save the A-Z sorting value of the relevant field to the ini file and get it. I can't get it in the form of Params['topAxis', 'Direction' ].asstring, how can I get the list of it.
  7. You're right, but I can't quite understand that I can't do that either.☺️ Could you please provide an example that dumps data into a memo object and reloads it from the memo object via a button. I would be very grateful, I do not understand, I have never used such a structure before.
  8. Hello Hayri, Thanks for the answer. I added the following code to the project, but nothing changed. I'm attaching a test project, if you could take a look, I'd be very grateful. PivotGrid - Configurator.zip
  9. For that matter, do you expect your users to redo the settings every time they turn on the screen? Users expect their settings to be permanent. I need an example on this.
  10. Hi, How can I save and re-call the configurations made in the pivot grid conf example. *I want to save and reload the marked settings on a per user basis.
  11. What should I do for the thousand separator without making a currency?
  12. I clearly identified the problem. It works correctly when I add runtime data to the ClientDataSet1 component. When I connect the field type Decimal(18, 2) in MSSQL database, the result is wrong. The problem was fixed when I made the field type float in MSSQL database. Thanks, an interesting situation arises but this is how I solved the problem. *Also, TL currency doesn't work even though I bought it according to kendo site. 'tr-TR' https://docs.telerik.com/kendo-ui/api/javascript/data/datasource/configuration/accentfoldingfiltering
  13. First of all, thank you for the work and the result. As above, the result does not change for me. Do I need to make any adjustments other than the code example above?
  14. procedure TMainForm.UniFormCreate(Sender: TObject); begin if Assigned(Sender) then Chart.ChartType := TUniFSKendoUIType(0); Chart.ChartTheme := TUniFSKendoUITheme(2); Chart.ChartSeries.Clear; Chart.ChartSeriesProperties.Clear; Chart.ChartProperties.Clear; Chart.ChartSeriesDefaults := EmptyStr; Chart.ChartTitleVisible := True; Chart.ChartTitle := 'Titulo Teste (bar, column, line)'; Chart.ChartDataSet := UniMainModule.ExecQ; // "categoryAxis" - reserved keyworld for categories (Linha do Tempo) Chart.ChartSeries.Values['categoryAxis'] := 'Gun'; Chart.SetCulture(''); // first set of data, name=dbfield 1ª Barra Chart.ChartSeries.Values['Brasil'] := 'DIhAdet'; // second set of data 2ª Barra Chart.ChartSeries.Values['Mundo'] := 'DIhM2'; // tooltip for line chart Chart.ChartProperties.Values['tooltip'] := '{visible: true, format: "{0:c}"}'; // labels for bars and columns Chart.ChartSeriesDefaults := 'labels: {visible: true, position: "insideEnd", template: "#= kendo.format(''{0:c}'', value) #"}'; Chart.ChartProperties.Values['valueAxis'] := '{labels: {rotation: "auto"}}'; Chart.ChartLegendPosition := TUniFSKendoUIPosition.Top; Chart.ChartStacked := False; Chart.ChartSeriesStyle := TUniFSKendoUISeriesStyle(0); Chart.SetCulture('pt-BR'); // cmbLegend.ItemIndex := Integer(Chart.ChartLegendPosition); Chart.InitChart; end;
  15. Hello @Marlon Nardi Thank you in advance for the update. The subject number 1 in my first message is solution genius mi. In other words, if there is data in the Adet and M2 Fields, the standard is selected. I want to bring one of them selectively. The user can choose the other if they want.
  16. Hi @Marlon Nardi Were you able to look
  17. Hello, I have sent you the sample test file as a message. When you run it, you will see an image like the one below. I want to separate the numbers in the marked fields with thousands separators.
  18. I sent a message, em is more descriptive and also asked here so that everyone can use it if it is resolved. Thanks for your attention
  19. No matter what I give to the format field as below, it has no effect. Chart.ChartProperties.Values['tooltip'] := '{visible: true, format: "{0}%", template: "#= series.name #: #= value #"}';
  20. Hi, Falcon Kendo Component is very nice, first of all thank you. -1. The subject can be active or inactive when we click on the above report fields (Number, M2). How can I make one of these fields passive at the beginning without the user clicking it? -2 I can't format the numbers in the 2nd and 3rd images. I wanted to add the thousands separator, but it doesn't work (I tried the formats on the Kendo site, but the result is negative.) @Marlon Nardi
×
×
  • Create New...