0

我正在尝试在可观察笔记本中的 Vega-Lite API 中重新创建此示例。我可以使用 Observable 中的另一个示例中的多线系列重新创建标尺。但我无法添加工具提示,我想添加代码代码和股票价格。这是我的Observable 笔记本。我会将工具提示规范放在哪里?谢谢!

    plot = {
  // select a point for which to provide details-on-demand
  const hover = vl.selectSingle()
    .encodings('x')  // limit selection to x-axis value
    .on('mouseover') // select on mouseover events
    .nearest(true)   // select data point nearest the cursor
    .empty('none');  // empty selection includes no data points

  // define our base line chart 
  const line = vl.markLine()
  .data(stocks)
  .encode(
    vl.x().fieldT('date'),
    vl.y().fieldQ('price'),
    vl.color().fieldN('symbol'),
  );
  
  // shared base for new layers, filtered to hover selection
  const base = line.transform(vl.filter(hover));

  return vl.data(stocks)
    .layer(
      line,
      // add a rule mark to serve as a guide line
      vl.markRule({color:'#c0c0c0'})
        .transform(
          vl.filter(hover),
          vl.pivot({pivot: 'symbol', value: 'price', groupby: ['date']}))
        .encode(vl.x().fieldT('date'),
               vl.tooltip().fieldQ('price')),
      // add circle marks for selected time points, hide unselected points
      line.markCircle()
        .select(hover) // use as anchor points for selection
        .encode(vl.opacity().if(hover, vl.value(1)).value(0),
                vl.tooltip(['symbol','price']))
    )
    .render(); }
4

1 回答 1

1

这是您在该示例中使用枢轴的方式

vl.pivot('symbol').value('price').groupby( ['date']))

那里的数据透视可帮助您将数据转换为表格格式,因此您可以在一行中获得所有可用的符号价格。这是带有工具提示的 Vega-Lite API 多线系列图表的完整工作示例:

https://observablehq.com/@vega/multi-series-line-chart-with-tooltip

于 2020-09-28T15:19:36.333 回答