0

我目前已经完成了 tradingview 库的集成,并对样式的某些部分进行了初步定制。

当前的CSS如下:

.chart-page .apply-common-tooltip, .chart-page .button.undo, .chart-page .button.redo,
.chart-page .symbol-edit-widget .symbol-edit-inputspacer input.symbol-edit {
    background: rgba(30,30,30,0.5) !important;
    /* background: blue !important; */
    border-color: #444 !important;
    color: #fff!important;
}
body, .chart-controls-bar, #footer-chart-panel{
    background-color: rgba(30,30,30,0.5) !important;
}
.chart-page .chart-container {
    background: none !important;
    border-color: #444 !important; 
}
.drawingToolbar-2CoOuCv8-{
    background-color: rgba(30,30,30,0.5);
}
.separator-3cgsM4c1-{
    background-color: #666;
}
a.button.getimage.apply-common-tooltip {
    background-color: #97999d !important;
}

我想要的是实际修改图表的标题面板,我似乎无法获得正确的 css 组合以使其更接近图表主体并在不破坏孩子的情况下降低它的高度。

以下是当前屏幕截图,其中包含我想要自定义的位置。 黄色高亮区域是我想干净地修改的地方

4

2 回答 2

0

您应该配置新的 css 文件:

var tvChart= new TradingView.widget(option);
tvChart.onChartReady(function() {
    tvChart.addCustomCSSFile('css/my-custom-css.css')
})

并将您的新样式放入“my-custom-css.css”

于 2020-09-27T18:53:27.963 回答
0

html.theme-light .group-wWM3zP_M- {
  background: #1E1E1F !important;
}

或黑暗

html.theme-dark .group-wWM3zP_M- {
  background: #1E1E1F !important;
}
于 2019-10-03T21:46:08.463 回答