Jump to content

unimChart not showing in chrome


NNPaulo

Recommended Posts

37 minutes ago, NNPaulo said:

Hi farshad; at moment i can't download this build (my subscription is experied ), is possible free this build to me?

Hi,

Can you please try this workaround?

uniChart.pas

procedure TUniCustomChart.LoadCompleted;
begin
  ConfigChart;
  FSeriesDataChanged := False;
  FAxes.FAxisA.FAxesLabelsChanged := False;
  FAxes.FAxisB.FAxesLabelsChanged := False;
  inherited;

  if IsMobile then // workaround for UNG-3319
    JSCall('handleResize', [nil, False], FJSChart);

  if Color = clWhite then
    JSBodyCls := 'x-panel-white'
  else
    JSConfig('background', [uniColor2Web(Color)], FJSChart);
end;

 

Link to comment
Share on other sites

×
×
  • Create New...