Forum Replies Created by osamanatouf

Viewing 4 posts - 1 through 4 (of 4 total)
  • in reply to: React .map unique mouseover event #31239

    @manoj-mohan
    The issue was solved, I used the subtitles and added unique identifers, which can be retrrived from the event easily.

    in reply to: React .map unique mouseover event #31192
    in reply to: React .map unique mouseover event #31191

    I just want to associate the event with from LineChart to te App component and make it unique

    in reply to: React .map unique mouseover event #31190

    Here is a code snippit

    
    {roc.map( data =>{
                        return(
                            <React.Fragment>
    
                                <Col md={6} xl={6} key={data["name"].toString()}>
                                    <Card >
                                        <Card.Header >
                                    
                                        </Card.Header>
                                        <Card.Body >
                                            <LineChart  linechart={
                                                [data["fpr"],data["tpr"],<code>ROC curve ${data[&quot;name&quot;]}</code>,'False Postive Rate','True Postive Rate',data["tpr"].length,data["name"]]
                                            }/>
                                        </Card.Body>
                                    </Card>
    
                                </Col>
                                < Col   md={6} xl={6} >
                                    <Card>
                                        <Card.Header>
                                        </Card.Header>
                                        <Card.Body>
                                            <App label={[data['name']]}/>
                                        </Card.Body>
                                    </Card>
                                </Col>
    
                            </React.Fragment>
                        );
Viewing 4 posts - 1 through 4 (of 4 total)