I'm trying to create a Line Mark with stock data from api. Just using the data will show the chart correctly but I need the Y axis range to not start from 0 but from the minimum value I give it.
So I basically call something like this:
.chartYScale(domain: viewmodel.range.0...viewmodel.range.1)
And these are the range value we are working with: Range (19076.715, 19089.549)
doing this basically crash the app with:
-[MTLTextureDescriptorInternal validateWithDevice:]:1344: failed assertion `Texture Descriptor Validation MTLTextureDescriptor has height (16811) greater than the maximum allowed size of 8192.
what am I doing wrong?