We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import { ResponsiveLine } from '@nivo/line'; import { useState, useEffect } from "react"; import axios from "axios";
export default function InfoLineGraph() {
// 로컬 스토리지에 저장되어 있는 searchStock 데이터 가져옴 var searchStock = localStorage.getItem('searchStock'); const detailStock = JSON.parse(searchStock); // ----------------서버에 요청-------------------- // detailStock.searchTarget.symbolCode 로 쿼리 날리고 해당하는 정보 받아오기 const stockSymbolCode = detailStock.searchTarget.symbolCode; const[current, setCurrent] = useState({}); function getRealtimeData(){ axios({ method: "get", url: `/main/realtime/?stock_name=${stockSymbolCode}`, headers: {"Access-Control-Allow-Origin": "*"}, responseEncoding: 'binary' }) .then((res) => { setCurrent(res.data) }).catch((err) => { console.log("데이터 받아오기 에러", err); }) } useEffect( () => { getRealtimeData(); const interval = setInterval(()=>{ getRealtimeData(); }, 50000) },[stockSymbolCode]) // console.log("curr: ", current[0].tradePrice); // console.log(current[0].datetime.slice(10,15)); // console.log(current); var chartData = [{x: 0, y: 0}]; console.log(current) // if(typeof(current) != undefined') { // chartData = current.map((data) => ({y: data.tradePrice, x: data.datetime.slice(10,15)})); // } let now = new Date(); let minutes = now.getMinutes(); return( <div style={{width: '90%', height: '400px'}}> <ResponsiveLine data={[ { "id": "Naver", "color": "hsl(206, 70%, 50%)", "data": chartData }, ]} margin={{ top: 50, right: 110, bottom: 50, left: 60 }} xScale={{ type: 'point' }} yScale={{ type: 'linear', min: 'auto', max: 'auto', stacked: true, reverse: false }} yFormat=" >-.2f" axisTop={null} axisRight={null} axisBottom={{ orient: 'bottom', tickSize: 5, tickPadding: 5, tickRotation: 0, legend: 'Profit and Loss Timeline', legendOffset: 36, legendPosition: 'middle' }} axisLeft={{ orient: 'left', tickSize: 5, tickPadding: 5, tickRotation: 0, legend: 'count', legendOffset: -40, legendPosition: 'middle', }} colors={['#FF5981']} enableGridX={false} enableGridY={false} pointSize={1} pointColor={{ theme: 'background' }} pointBorderWidth={2} pointBorderColor={{ from: 'serieColor' }} pointLabelYOffset={-12} useMesh={true} // legends={[ // { // anchor: 'bottom-right', // direction: 'column', // justify: false, // translateX: 100, // translateY: 0, // itemsSpacing: 0, // itemDirection: 'left-to-right', // itemWidth: 80, // itemHeight: 20, // itemTextColor: '#999', // itemOpacity: 0.75, // symbolSize: 12, // symbolShape: 'circle', // symbolBorderColor: 'rgba(0, 0, 0, .5)', // effects: [ // { // on: 'hover', // style: { // itemBackground: 'rgba(0, 0, 0, .03)', // itemOpacity: 1 // } // } // ] // } // ]} /> </div> );
}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
import { ResponsiveLine } from '@nivo/line';
import { useState, useEffect } from "react";
import axios from "axios";
export default function InfoLineGraph() {
}
The text was updated successfully, but these errors were encountered: