error message to display scroll alphabet

error message is:

'class LedControl' has no member named 'displaychar'

//We always have to include the library
#include "LedControl.h"

/*
 Now we need a LedControl to work with.
 ***** These pin numbers will probably not work with your hardware *****
 pin 12 is connected to the DataIn 
 pin 11 is connected to the CLK 
 pin 10 is connected to LOAD 
 We have only a single MAX72XX.
 */
#define NBR_MTX 4 
LedControl lc=LedControl(12,11,10, NBR_MTX);

String digits= "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
int digitCounter=0;
/* we always wait a bit between updates of the display */
unsigned long delaytime=300;


void setup() {
  /*
   The MAX72XX is in power-saving mode on startup,
   we have to do a wakeup call
   */
  Serial.begin (9600);
  Serial.println("Setup");
  digitCounter=0;
  for (int i=0; i< NBR_MTX; i++){
    lc.shutdown(i,false);
  /* Set the brightness to a medium values */
    lc.setIntensity(i,8);
  /* and clear the display */
    lc.clearDisplay(i);
  }
  
  scrollLeft ('A');
  scrollRight('G');
  

 
}


void loop() { 
  char ch= digits[digitCounter];
  digitCounter++;
  if (digitCounter>25) digitCounter=0;
  lc.displayChar(0, lc.getCharArrayPosition(ch));
  delay(500);
  


}


void scrollLeft(char ch){
  int pos =lc.getCharArrayPosition(ch);
  for (int scroll =0; scroll<6; scroll++) {
     for (int i=scroll; i<6;i++) {
        lc.setRow(0,i-scroll, alphabetBitmap[pos][i]);
    } 
    delay(300);
    lc.clearDisplay(0);
  }

  for (int scroll =0; scroll<6; scroll++) {
     for (int i=scroll; i<6;i++) {
        lc.setRow(3,i-scroll, alphabetBitmap[pos][i]);
    } 
    delay(300);
    lc.clearDisplay(0);
  }
  
    for (int scroll =0; scroll<6; scroll++) {
     for (int i=scroll; i<6;i++) {
        lc.setRow(2,i-scroll, alphabetBitmap[pos][i]);
    } 
    delay(300);
    lc.clearDisplay(0);
  }
  
  
}

void scrollRight(char ch){
  int pos =lc.getCharArrayPosition(ch);
  for (int scroll =0; scroll<8; scroll++) {
     for (int i=0; i<6;i++) {
        if (scroll+i<8) lc.setRow(0, scroll+i, alphabetBitmap[pos][i]);
    } 
    delay(200);
    lc.clearDisplay(0);
  }
   for (int scroll =0; scroll<16; scroll++) {
     for (int i=0; i<6;i++) {
        if (scroll+i<8) lc.setRow(1, scroll+i, alphabetBitmap[pos][i]);
    } 
    delay(200);
    lc.clearDisplay(1);
   }
}

You are using the library incorrectly; the library has no method called "displaychar". Consult the library documentation and adjust your code appropriately. Remember that C is case sensitive.

For further help, post the exact text of any and all errors, not just part of the last one.

Also, if you have the library installed in the libraries folder, you include with <>'s not ""'s

This thread is a programming question - in the future, post programming questions in the programming question section. Installation and troubleshooting is only for problems with the Arduino itself (stuff like driver problems, IDE bugs), not with your project. Do not post a second thread. A moderator may move your thread if/when they see it.