Code Monkey home page Code Monkey logo

Comments (4)

lkum11 avatar lkum11 commented on June 18, 2024 1

<ChartView
style={{ height: 270, marginTop: 5}}
config={conf}
originWhitelist={[""]}
useWebKit={true}
scalesPageToFit={undefined}
/>

You may try by adding below properties, It worked for me.
originWhitelist={[""]}
useWebKit={true}
scalesPageToFit={undefined}

from react-native-highcharts.

lkum11 avatar lkum11 commented on June 18, 2024

import React from 'react';
import { ScrollView, Platform } from 'react-native';
import ChartView from 'react-native-highcharts';
import { Ionicons } from '@expo/vector-icons';

const Graph = () => {
const Highcharts = 'Highcharts';
const conf = {
chart: {
type: 'spline',
backgroundColor: '#fefefe',
marginRight: 10
},
title: {
text: 'Random Data'
},
xAxis: {
type: 'date',
tickPixelInterval: 80,
},
yAxis: {
// To remove grid lines from background
gridLineWidth: 0,
title: {
text: 'Value'
},
labels: {
enabled: false
},
// TO get cut of lines
plotLines: [{
value: 50000,
dashStyle: 'dash',
width: 1,
color: '#AB966C',
label: {
text: 'Total Goal'
}
}]
},
tooltip: {
shared: true,
crosshairs: true
},
legend: {
enabled: false
},
// To remove the various exporting options
exporting: {
enabled: false
},
series: [{
name: 'Installation',
data: [11744, 43934, 52503, 57177, 69658, 97031]
}, {
name: 'Manufacturing',
data: [11744, 24916, 24064, 29742, 29851, 32490]
}, {
name: 'Sales & Distribution',
data: [11744, 17722, 16005, 19771, 20185, 24377]
}],

    plotOptions: {
      series: {
          allowPointSelect: true,
      }
    },
    // To remove highcharts.com credit
    credits: {
        enabled: false
    },
};

return (
    <ScrollView>

        <ChartView 
            style={{ height: 300, marginTop: 40 }} 
            config={conf} 
            originWhitelist={[""]}
            javaScriptEnabled={true}
            domStorageEnabled={true} 
        />
        
    </ScrollView>
);

};

export default Graph;

The above code is rendering find in android but not in IOS.
Any help would be highly appreciated .

from react-native-highcharts.

amauryeuzebio avatar amauryeuzebio commented on June 18, 2024

I have the same problem :(

from react-native-highcharts.

MohitDhingra0786 avatar MohitDhingra0786 commented on June 18, 2024

@lkum11
I've update the source property and it works at my end.
source={Platform.OS == 'ios' ? { html: concatHTML } : { html: concatHTML, baseUrl: 'web/' }}

from react-native-highcharts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.