B4A Question need RX&TX linechart in scroll view.can you help me? - klaus (first post)    Dec 24, 2018 Do you have a project that you can post here as a zip file?
As your answers remain relatively vague,... B4J Library [B4X] [XUI] xChart Class and b4xlib - dlh_007 (first post)    Feb 8, 2023 As String)
' Initialize the line data
LineChart1.Width=Width
LineChart1.Height=Height
LineChart1.ClearData
LineChart1.XAxisName = "s"
LineChart1.YAxisName... B4A Question TabHost on top of other views - gezueb    Apr 27, 2022 I would like to call a TabHost View (linechart) from an existing layout. The Linecharts appears, but the views from the calling layout are still visible and active. How can I put the linechart in front of other views so that they disappear until I press aback button? The method "bringtofront" of the TabHostExtras library does not do the trick either. Help welcome!... B4A Tutorial mpAndroidCharts - Various Charts using JavaObject - Johan Schoeman (first post)    Aug 4, 2024   (3 reactions) .
Private xui As XUI
Dim ctx As JavaObject
Dim lineChart As JavaObject
Dim...
lineChart.InitializeNewInstance("com.github.mikephil.charting.charts.LineChart", Array(ctx... B4A Question xCharts rotation issue - Mahares (first post)    Jul 19, 2020
#SupportedOrientations: Landscape
End If
LineChart1.ClearData
LineChart1.AddLine("First line", Colors.Blue)
LineChart1.AddLine("Second line", Colors.Magenta... B4A Question [xChart] Force axis to start from 0 - klaus (first post)    Apr 22, 2020 I would like to force the 'y' axis to start from 0, is this possible? For logarithmic scales it is mathematically IMPOSSIBLE. You can set the min value to 1, 0.1, 0.01, 0.001 etc but NOT to 0! What you can do is to set manual scales, for example: LineChart1.YScaleLogaritmic = True LineChart1.AutomaticScale = False LineChart1.YMinValue = 0.1 LineChart1.YMaxValue = 500 While testing I found a bug with manual logarithmic scales, the xChart thread has been updated.... B4A Question Hide a line in XCHART V8.0 - klaus (first post)    Dec 31, 2021   (1 reaction) You can set Different scales for each line by setting the DifferentScales property to True.
123672
Or in the code with:
LineChart.DifferentScales = True... B4A Question Some problems with xChart - klaus (first post)    May 14, 2018   (1 reaction) This is what I get:
67858
With the code below:
LineChart2.AutomaticScale = False
LineChart2.YScaleMinValue = 0
LineChart2.YScaleMaxValue = 200
LineChart2.Title = "Blood pressure"... B4A Question MPAndroidCharts - Spurious horizontal lines - Johan Schoeman (first post)    Dec 2, 2021
Maybe try this:
mlc1.HorizontalGridColorLeft = Colors.Cyan
mlc1.HorizontalGridColorRight = Colors.Transparent
It is in the multi linechart... B4A Question Line chart - Cenny (first post)    Apr 12, 2020 found it. linechart1.NoOfMarkerDigits... Page: 1   2   3   4   |