크로스헤어 세로선 교차점 on off 설정
This commit is contained in:
@@ -475,6 +475,14 @@ function AppMainContent({
|
|||||||
onChartCandleAreaPriceLabels={v => saveAppDef({ chartCandleAreaPriceLabels: v })}
|
onChartCandleAreaPriceLabels={v => saveAppDef({ chartCandleAreaPriceLabels: v })}
|
||||||
chartSeriesPriceLabels={appDefaults.chartSeriesPriceLabels ?? true}
|
chartSeriesPriceLabels={appDefaults.chartSeriesPriceLabels ?? true}
|
||||||
onChartSeriesPriceLabels={v => saveAppDef({ chartSeriesPriceLabels: v })}
|
onChartSeriesPriceLabels={v => saveAppDef({ chartSeriesPriceLabels: v })}
|
||||||
|
chartCrosshairInfoVisible={appDefaults.chartCrosshairInfoVisible ?? true}
|
||||||
|
onChartCrosshairInfoVisible={v => saveAppDef({ chartCrosshairInfoVisible: v })}
|
||||||
|
chartCrosshairMarkersVisible={appDefaults.chartCrosshairMarkersVisible ?? true}
|
||||||
|
onChartCrosshairMarkersVisible={v => saveAppDef({ chartCrosshairMarkersVisible: v })}
|
||||||
|
chartLegendOptions={appDefaults.chartLegendOptions}
|
||||||
|
onChartLegendOptionsChange={patch => saveAppDef({
|
||||||
|
chartLegendOptions: { ...appDefaults.chartLegendOptions, ...patch },
|
||||||
|
})}
|
||||||
/>
|
/>
|
||||||
</Suspense>
|
</Suspense>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -1239,7 +1239,6 @@ const ChartPanel: React.FC<ChartPanelProps> = ({
|
|||||||
</SettingSection>
|
</SettingSection>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{chartLegendOptions && onChartLegendOptionsChange && (
|
|
||||||
<SettingSection title="크로스헤어 정보">
|
<SettingSection title="크로스헤어 정보">
|
||||||
<SettingRow
|
<SettingRow
|
||||||
label="크로스헤어 정보 표시"
|
label="크로스헤어 정보 표시"
|
||||||
@@ -1268,7 +1267,6 @@ const ChartPanel: React.FC<ChartPanelProps> = ({
|
|||||||
</label>
|
</label>
|
||||||
</SettingRow>
|
</SettingRow>
|
||||||
</SettingSection>
|
</SettingSection>
|
||||||
)}
|
|
||||||
|
|
||||||
{chartLegendOptions && onChartLegendOptionsChange && (
|
{chartLegendOptions && onChartLegendOptionsChange && (
|
||||||
<SettingSection title="상단 정보 표시">
|
<SettingSection title="상단 정보 표시">
|
||||||
|
|||||||
Reference in New Issue
Block a user