TradingPal / react-native-highcharts

📈 Add Highcharts charts to react-native app for IOS and Android
https://github.com/TradingPal/react-native-highcharts
256 stars 158 forks source link

The font on ios is too small #24

Closed HyperSimon closed 7 years ago

HyperSimon commented 7 years ago
on Android on IOS
screenshot_1493785327 simulator screen shot 2017 5 3 12 20 44
njt1982 commented 7 years ago

@HyperSimon Did you solve this?

sphism commented 7 years ago

Can't this just be styled with css?

sphism commented 7 years ago

I managed to fix this yesterday by setting some things in the highcharts options. Not sure if that would make the android fonts huge, i guess you might need to target ios with different options.

@HyperSimon The options that fixed it were:

      chart: {
      ...
      },
      xAxis: {
        ...
        labels: {
          ...
          style: {
            fontSize: 24,
          },
        },
      },
      yAxis: {
        ...
        labels: {
          style: {
            fontSize: 24,
          },
        },
      },
      legend: {
        ...
        itemStyle: {
          fontSize: 32,
        },
      },
HyperSimon commented 7 years ago

see https://github.com/TradingPal/react-native-highcharts/pull/25 close now