Mark Volkmann
Mark Volkmann
I'm hitting this issue now. @L3V147H4N, did you ever find a workaround?
It seems that the fix for this is to delete several lines from themes/index.css. Every place these lines appear: ```` display: box; display: flex; ```` delete the line containing `display:...
I will create a PR to fix this if the author tells me it is likely to be accepted. @furqanZafar, please let me know. The presence of these warnings is...
Can someone tell me how the file themes/index.css gets generated? I see that it isn't in the GitHub repo.
I do see this issue on real devices.
Actually, I see this issue regardless of whether I call `.pointMarkers`. My chart displays x-axis labels initially. But all subsequent charts I display are missing the x-axis labels until I...
When I display an infoBox, it throws off the alignment of the axes. The x-axis no longer starts at the bottom of the y-axis and instead is moved part way...
In my `LineChartStyle` I have the following: ```swift infoBoxPlacement: .infoBox(isStatic: false), infoBoxContentAlignment: .vertical, infoBoxBorderColour: Color.primary, infoBoxBorderStyle: StrokeStyle(lineWidth: 1), ```
Here is a screen shot that shows the issue. The value for "Mark" is 10, but notice that the y-axis has shifted down so that the "10.00" y-axis label isn't...
Here is my code that creates the chart: ```swift LineChart(chartData: chartData) .pointMarkers(chartData: chartData) .touchOverlay(chartData: chartData, formatter: numberFormatter) .xAxisLabels(chartData: chartData) .yAxisLabels( chartData: chartData, formatter: numberFormatter, colourIndicator: .style(size: 12) ) .headerBox(chartData: chartData)...